Filesystem
The Filesystem registry allows for efficient interaction with the file system, providing functions to read, write, and manipulate files directly from your templates.
You can easily import all the functions from the filesystem
registry by including the following import statement in your code
pathBase
The function returns the last element of a given path, effectively extracting the file or directory name from the full path.
Signature
pathDir
The function returns all but the last element of a given path, effectively extracting the directory portion of the path.
Signature
pathExt
The function returns the file extension of the given path, identifying the type of file by its suffix.
Signature
pathClean
The function cleans up a given path by simplifying any redundancies, such as removing unnecessary double slashes or resolving "." and ".." elements, resulting in a standardized and more straightforward path.
Signature
pathIsAbs
The function checks whether the given path is an absolute path, returning true
if it is and false
if it is not.
Signature
osBase
The function returns the last element of a given path, using the operating system's specific path separator to determine the path structure.
Signature
osDir
The function returns all but the last element of a given path, using the operating system's specific path separator to navigate the directory structure.
Signature
osExt
The function returns the file extension of a given path, using the operating system's specific path separator to accurately determine the extension.
Signature
osClean
The function cleans up a given path, using the operating system's specific path separator to simplify redundancies and standardize the path structure.
Signature
osIsAbs
The function checks whether the given path is absolute, using the operating system's specific path separator to determine if the path is absolute or relative.
Signature
Last updated