_STARTDIR$
Revision as of 17:03, 9 September 2017 by imported>SMcNeill (style guidelines)
The _STARTDIR$ function returns the path a user called a QB64 program from.
Syntax
- callPath$ = _STARTDIR$
Description
- Returns a STRING representing the user's program calling path.
Availability
- Version 1.000 and up.
Examples
Example: Showcasing QB64 path functions:
$CONSOLE:ONLY _DEST _CONSOLE SHELL "cd" PRINT _CWD$ PRINT _STARTDIR$ SYSTEM
See also