Name
FilePart -- return the file component of a path
Synopsis
file$ = FilePart(path$)
Function
This function extracts the filename from a path specified by path$ and returns it.
Inputs
path$
source path
Results
file$
file part
Example
f$ = FilePart("Data/Gfx/Test.jpg") Print(f$)
The above code prints "Test.jpg" to the screen.
Show TOC