Filesystem
The Filesystem registry allows for efficient interaction with the file system, providing functions to read, write, and manipulate files directly from your templates.
Last updated
The Filesystem registry allows for efficient interaction with the file system, providing functions to read, write, and manipulate files directly from your templates.
Last updated
You can easily import all the functions from the filesystem
registry by including the following import statement in your code
The function returns the last element of a given path, effectively extracting the file or directory name from the full path.
The function returns all but the last element of a given path, effectively extracting the directory portion of the path.
The function returns the file extension of the given path, identifying the type of file by its suffix.
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.
The function checks whether the given path is an absolute path, returning true
if it is and false
if it is not.
The function returns the last element of a given path, using the operating system's specific path separator to determine the path structure.
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.
The function returns the file extension of a given path, using the operating system's specific path separator to accurately determine the extension.
The function cleans up a given path, using the operating system's specific path separator to simplify redundancies and standardize the path structure.
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
Signature
Signature
Signature
Signature
Signature
Signature
Signature
Signature
Signature