Return the current working directory of the application.
Source position: diskh.inc line 19
| function GetCurrentDir: AnsiString; | 
GetCurrentDir returns the current working directory.
None.
| 
 | Set the current directory of the application. | |
| 
 | Return the amount of free diskspace. | |
| 
 | Return the total amount of diskspace. | 
Program Example28; { This program demonstrates the GetCurrentDir function } Uses sysutils; Begin Writeln ('Current Directory is : ',GetCurrentDir); End.