None. |
This command will return the currently selected directory for disk operations, useful for advanced file operations. Use CHANGEDIR to change the current directory. The value returned doesn't have a trailing slash - aside from the root directory of the drive. |
; CurrentDir$() example
; Print the current directory until ESC key While Not KeyHit(1) Print CurrentDir$() Wend |