Module brl.filepath - leonard-thieu/monkey GitHub Wiki
The filepath module contains functions for manipulating file paths.
ExtractDir : String ( path:String )
ExtractExt : String ( path:String )
StripAll : String ( path:String )
StripDir : String ( path:String )
StripExt : String ( path:String )
The filepath module contains functions for manipulating file paths.
Returns the directory part of a file path.
Returns the file type extension part of a file system path.
Removes both the directory and file type extension from a file path.
Removes the directory from a file path.
Removes the file type extension from a file path.