README.md
December 5, 2022 ยท View on GitHub
Description
The GetCurrentDir function will return a string which contains the name of the current directory.
More Info
| Submitted On | |
| By | N/A |
| Level | Beginner |
| User Rating | 4.0 (8 globes from 2 users) |
| Compatibility | Delphi 5, Delphi 4, Pre Delphi 4 |
| Category | Files/ File Controls/ Input/ Output |
| World | Delphi |
| Archive File |
Source Code
procedure TForm1.Button1Click(Sender: TObject);
begin
Label1.Caption := GetCurrentDir;
end;