Futurebasic/Language/Reference/usr fsgetfullpathname

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USR FSGETFULLPATHNAME(fsSpec,pathName$)

Revised August, 2002 (Release 7)

Description - This function returns the full path name for the file specified by fsSpec. Folder names are separated by colons.

Example:

INCLUDE "Util_Files.incl"

DIM fs AS FSSpec

DIM x,name$ name$ = FILES$(_FSSpecOpen,,,fs) x = USR FSGETFULLPATHNAME(fs,name$)

PRINT name$

DO HANDLEEVENTS UNTIL 0

See Also FINDERINFO, FILES$; USR SCANFOLDER