Cerberus X Documentation

Module brl.filepath

The filepath module contains functions for manipulating file paths. More...

Declarations

Imported By
brl
Please note that only documented modules are listed here, there might be undocumented modules that import this one.
Functions
ExtractDir : String ( path:String ) Returns the directory part of a file path.
ExtractExt : String ( path:String ) Returns the file type extension part of a file system path.
StripAll : String ( path:String ) Removes both the directory and file type extension from a file path.
StripDir : String ( path:String ) Removes the directory from a file path.
StripExt : String ( path:String ) Removes the file type extension from a file path.

Detailed Discussion

The filepath module contains functions for manipulating file paths.


Functions Documentation

Function ExtractDir : String ( path:String )

Returns the directory part of a file path.

Function ExtractExt : String ( path:String )

Returns the file type extension part of a file system path.

Function StripAll : String ( path:String )

Removes both the directory and file type extension from a file path.

Function StripDir : String ( path:String )

Removes the directory from a file path.

Function StripExt : String ( path:String )

Removes the file type extension from a file path.