What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

FileIO()

Object housing functionality to perform file IO tasks such as 'writeTextFile', 'moveTo', 'createDirectory' an more. [NON-INSTANTIABLE] [REQUIREMENT: unpublished projects only] [REQUIREMENT: user subscription access - 'fileIO']

new FileIO()

METHODS

async appendTextFile(filePath, additionalContent, isPathRelative (opt)) returns {IncrCommsResponseObject}

Appends text content to the text file at the given file path. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

The relative or absolute path to the file in question.

additionalContent string  

This is the text content that will be written in the file.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async compress(sourcePath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Compresses the given file or directory into a zip file. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
sourcePath string  

The relative or absolute path to the file or directory in question. If a directory path is provided, the directory must contain at least one file or an error will be encountered.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async copyTo(sourcePath, destinationPath, isPathRelative (opt), newName (opt)) returns {IncrCommsResponseObject}

Copies the provided file or directory into the designated directory, with an option to rename the item while copying. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
sourcePath string  

The relative or absolute path to the source item.

destinationPath string  

The relative or absolute path for the destination directory.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

newName string <optional>
 

The new name (not including the path) of the item you wish to rename. If "" is provided, then no rename occurs. [DEFAULT: ""].

async createDirectory(directoryPath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Returns an IncrCommsResponseObject with a '.payload' string containing the contents of the text file at the given path. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
directoryPath string  

The relative or absolute path to the directory in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async decompress(sourcePath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Decompresses the zip file at the given path into its source format. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
sourcePath string  

The relative or absolute path to the file or directory in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async delete(path, isPathRelative (opt)) returns {IncrCommsResponseObject}

Deletes the provided file or directory. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
path string  

The relative or absolute path of the item to delete.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async directoryExists(directoryPath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Returns an IncrCommsResponseObject with a '.payload' bool stating if the directory at the given path exists. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
directoryPath string  

This is the relative or absolute path to the directory in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async fileExists(filePath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Returns an IncrCommsResponseObject with a '.payload' bool stating if the file at the given path exists. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

This is the relative or absolute path to the file in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async getDirectoryContents(directoryPath, isPathRelative (opt), recurseSubdirectories (opt), includeHiddenFiles (opt)) returns {Array}

Returns an IncrCommsResponseObject with a '.payload' array containing the paths to the directories and files within the given directory. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
directoryPath string  

This is the relative or absolute path to the directory in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

recurseSubdirectories boolean <optional>
 

Bool stating if list of paths returned should include all sub-directories. [DEFAULT: false]

includeHiddenFiles boolean <optional>
 

Bool stating if list of paths returned should include hidden files. [DEFAULT: false]

Returns:
Array

async moveTo(sourcePath, destinationPath, isPathRelative (opt), newName (opt)) returns {IncrCommsResponseObject}

Moves the provided file or directory into the designated directory, with an option to rename the item while moving. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
sourcePath string  

The relative or absolute path to the source item.

destinationPath string  

The relative or absolute path for the destination directory.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

newName string <optional>
 

The new name (not including the path) of the item you wish to rename. If "" is provided, then no rename occurs. [DEFAULT: ""].

async readFileBase64(filePath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Returns an IncrCommsResponseObject with a '.payload' string containing the contents of the file at the given path in Base64 format. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

The relative or absolute path to the file in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async readTextFile(filePath, isPathRelative (opt)) returns {IncrCommsResponseObject}

Returns an IncrCommsResponseObject with a '.payload' string containing the contents of the text file at the given path. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

The relative or absolute path to the file in question.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async rename(path, newName, isPathRelative (opt)) returns {IncrCommsResponseObject}

Renames the file or folder at the given path. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
path string  

The relative or absolute path to the file in question.

newName string  

The new name (not including the path) of the item you wish to rename.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async writeFileFromBase64(filePath, base64, isPathRelative (opt)) returns {IncrCommsResponseObject}

Writes a file from a base64 string. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

The relative or absolute path to the file in question.

base64 string  

The source base64 string to write the file from.

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]

async writeTextFile(filePath, fileContent (opt), isPathRelative (opt)) returns {IncrCommsResponseObject}

Writes text content to a file at the given path. If an error is encountered, related information will be stored in the '.error' member of the returned IncrCommsResponseObject. This function is asynchronous will return a promise if not 'awaited'.

Parameters:
Name Type Attributes Default Description
filePath string  

The relative or absolute path to the file in question.

fileContent string <optional>
 

This is the text content that will be written in the file. [DEFAULT: ""]

isPathRelative boolean <optional>
 

Bool stating if the given path is relative to the project path or an absolute path. If an absolute path is used that is outside of the project directory, the 'allowUniversalFileIO' item in application settings must be set to true. [DEFAULT: true]