This function returns the directory part of the indicated file name, which normally is the same as the path except for the final backslash.
filename_dir(fname);
Argument | Type | Description |
---|---|---|
fname | String | The file to use. |
dir = filename_dir("Test.ini");
The above code gets the directory (as a string) of the specified file.