Using the %currentlocaldir Variable

Top  Previous  Next

 

The current local working folder is maintained in an internal variable named %currentlocaldir.

 

WORKINGDIR "c:\temp"

DISPLAY %currentlocaldir

 

Whenever changing the working folder in script functions or called scripts, it is recommended that the original working folder always be restored prior to returning as shown in the following sample code.

 

FUNCTION things todo

;; save current working folder

SET savdir = %currentlocaldir

;; do whatever...

WORKINGDIR "c:\temp"

;; ...

;; restore working folder

WORKINGDIR savdir

RETURN

 

 

Related Command(s): WORKINGDIR

See Also: Internal Script Variables, %currentsitedir, FTPCD, FTPPWD