Description |
The SetCurrentDir function sets the current directory to Dir, returning True if successful.
If the directory does not exist, then getLAstError can be used to get the error code.
|
| Related commands | |
Download this web site as a Windows program.
|
|
|
|
Example code : Show set and re-show the current directory | begin
 // Show the current directory
ShowMessage('Current directory = '+GetCurrentDir);
 // Change this value
SetCurrentDir('C:\Program Files');
 // Show the current directory again
ShowMessage('Current directory = '+GetCurrentDir);
end;
| Show full unit code | Current directory = C:\Program Files\Borland\Delphi7\Projects
Current directory = C:\Program Files |
|
|