Files
Blocks for working with filesystem-like path strings and files: path literals, file-name and extension transformations, reading and writing text files, and deleting files. These path operations also work with folder paths, but they are not for Premiere reference path syntax.
- Copy File: Copies one file to another path.
- Create Folder: Creates a folder and any missing parent folders.
- Delete File: Deletes a file at a given filesystem path.
- Delete Folder: Deletes a folder, optionally including all nested contents.
- File Exists: Returns whether a path currently resolves to an existing file.
- File Modified At: Returns the last modification timestamp of a file as an ISO date-time string.
- File Size: Returns the size of a file in bytes.
- Folder Exists: Returns whether a path currently resolves to an existing folder.
- List Files In Folder: Returns the file paths inside a folder, optionally including nested subfolders.
- List Folders In Folder: Returns the folder paths inside a folder, optionally including nested subfolders.
- Move File: Moves one file to another path.
- Path Change Extension: Replaces the final extension of a path string or adds one when none exists.
- Path Extension: Returns the final extension of a path string without the dot.
- Path File Name: Returns the last segment of a path string, including the final extension.
- Path File Name Without Extension: Returns the last segment of a path string without its final extension.
- Path Folder: Returns the parent path of a file-like or folder-like path string.
- Path Without Extension: Returns the full path string with only the final extension removed.
- Read Text File: Reads a text file and returns its contents as a string.
- Rename File: Renames one file inside its current parent folder.
- Resolve Special Path: Resolves
~and supported special path placeholders like::DESKTOP::to an absolute path string. - Write Text File: Writes
textto a file atpath.