This commit is contained in:
parent
d238e6ac10
commit
ff8ae0c77b
10 changed files with 177 additions and 125 deletions
|
@ -266,8 +266,6 @@ GString Path;
|
|||
|
||||
Out=Path;
|
||||
Out+=In;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**************************************************************************************/
|
||||
|
@ -278,3 +276,15 @@ GString RootPath=theApp.GetCurrent()->GetPathName();
|
|||
GFName::makerelative(RootPath,In,Out);
|
||||
}
|
||||
|
||||
/**************************************************************************************/
|
||||
GString GetWorkingPath()
|
||||
{
|
||||
GFName FullPath=theApp.GetCurrent()->GetPathName();
|
||||
GString Path;
|
||||
|
||||
Path=FullPath.Drive();
|
||||
Path+=FullPath.Dir();
|
||||
Path.Append('\\');
|
||||
|
||||
return(Path);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue