CurrentDirectory Property |
Description
Retrieves or changes the current active directory.
PowerBASIC Syntax
Arguments
Remarks
The CurrentDirectory returns a string that contains the fully qualified path of the current working directory of the active process.
Example [PowerBASIC]
#INCLUDE "WSHOM.INC"
DIM pWsh AS IWshShell3
pWsh = NEWCOM "WScript.Shell" STDOUT ACODE$(pWsh.CurrentDirectory)
|