Skip to main content

File

Helper functions for file operations.

Functions

copyFileOrDirectory()

function copyFileOrDirectory(srcPath, dstPath): void

Defined in: functions/file.ts:20

Helper function to synchronously copy a file or directory. If a path to a directory is specified, the directory will be recursively copied.

This will throw an error if the file cannot be copied.

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

void


copyFileOrDirectoryAsync()

function copyFileOrDirectoryAsync(srcPath, dstPath): Promise<void>

Defined in: functions/file.ts:38

Helper function to asynchronously copy a file or directory. If a path to a directory is specified, the directory will be recursively copied.

This will throw an error if the file cannot be copied.

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

Promise<void>


cp()

function cp(srcPath, dstPath): void

Defined in: functions/file.ts:54

Alias for the copyFileOrDirectory function. Intended to be used in scripts.

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

void


deleteFileOrDirectory()

function deleteFileOrDirectory(...filePaths): void

Defined in: functions/file.ts:67

Helper function to synchronously delete a file or directory. If a path to a directory is specified, the directory will be recursively deleted. If the path does not exist, this function will be a no-op.

This will throw an error if the file cannot be deleted.

This function is variadic, meaning that you can pass as many file paths as you want to delete.

Parameters

ParameterType
...filePathsreadonly string[]

Returns

void


deleteFileOrDirectoryAsync()

function deleteFileOrDirectoryAsync(...filePaths): Promise<void>

Defined in: functions/file.ts:92

Helper function to asynchronously delete a file or directory. If a path to a directory is specified, the directory will be recursively deleted. If the path does not exist, this function will be a no-op.

This will throw an error if the file cannot be deleted.

This function is variadic, meaning that you can pass as many file paths as you want to delete.

Parameters

ParameterType
...filePathsreadonly string[]

Returns

Promise<void>


fileOrDirectoryExists()

function fileOrDirectoryExists(filePath): boolean

Defined in: functions/file.ts:118

Helper function to synchronously check if a file exists.

This will throw an error if there is an error when checking the file path.

Parameters

ParameterType
filePathstring

Returns

boolean


getFileNamesInDirectory()

function getFileNamesInDirectory(directoryPath, filter?): readonly string[]

Defined in: functions/file.ts:141

Helper function to synchronously get the file names inside of a directory. (If the full path is required, use the getFilePathsInDirectory helper function instead.)

This will throw an error if there is an error when checking the directory.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory.
filter?"files" | "directories"Optional. If specified, will only return this type of file.

Returns

readonly string[]


getFileNamesInDirectoryAsync()

function getFileNamesInDirectoryAsync(directoryPath, filter?): Promise<readonly string[]>

Defined in: functions/file.ts:168

Helper function to asynchronously get the file names inside of a directory. (If the full path is required, you must manually join the file name with the path to the directory.)

This will throw an error if there is an error when checking the directory.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory.
filter?"files" | "directories"Optional. If specified, will only return this type of file.

Returns

Promise<readonly string[]>


getFilePath()

function getFilePath(fileName, filePathOrDirPath): Promise<string>

Defined in: functions/file.ts:227

Helper function to synchronously get the path to file, given either a file path, a directory path, or undefined.

This will throw an error if the file cannot be found.

Parameters

ParameterTypeDescription
fileNamestringThe name of the file to find.
filePathOrDirPathundefined | stringEither the path to a file or the path to a directory which contains the file. If undefined is passed, the current working directory will be used.

Returns

Promise<string>


getFilePathsInDirectory()

function getFilePathsInDirectory(directoryPath, filter?): readonly string[]

Defined in: functions/file.ts:264

Helper function to synchronously get the file names inside of a directory.

This will throw an error if there is an error when checking the directory.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory.
filter?"files" | "directories"Optional. If specified, will only return this type of file.

Returns

readonly string[]


getFilePathsInDirectoryAsync()

function getFilePathsInDirectoryAsync(directoryPath, filter?): Promise<readonly string[]>

Defined in: functions/file.ts:281

Helper function to asynchronously get the file names inside of a directory.

This will throw an error if there is an error when checking the directory.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory.
filter?"files" | "directories"Optional. If specified, will only return this type of file.

Returns

Promise<readonly string[]>


getMatchingFilePaths()

function getMatchingFilePaths(directoryPath, matchFunc): Promise<readonly string[]>

Defined in: functions/file.ts:296

Helper function to recursively traverse a directory and get the file names that match the provided logic.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory to crawl.
matchFunc(filePath) => booleanThe function that contains the matching logic.

Returns

Promise<readonly string[]>


isDirectory()

function isDirectory(filePath): boolean

Defined in: functions/file.ts:327

Helper function to synchronously check if the provided path exists and is a directory.

Parameters

ParameterType
filePathstring

Returns

boolean


isDirectoryAsync()

function isDirectoryAsync(filePath): Promise<boolean>

Defined in: functions/file.ts:336

Helper function to asynchronously check if the provided path exists and is a directory.

Parameters

ParameterType
filePathstring

Returns

Promise<boolean>


isFile()

function isFile(filePath): boolean

Defined in: functions/file.ts:346

Helper function to synchronously check if the provided path exists and is a file.

Parameters

ParameterType
filePathstring

Returns

boolean


isFileAsync()

function isFileAsync(filePath): Promise<boolean>

Defined in: functions/file.ts:355

Helper function to asynchronously check if the provided path exists and is a file.

Parameters

ParameterType
filePathstring

Returns

Promise<boolean>


function isLink(filePath): boolean

Defined in: functions/file.ts:365

Helper function to synchronously check if the provided path exists and is a symbolic link.

Parameters

ParameterType
filePathstring

Returns

boolean


isSubdirectoryOf()

function isSubdirectoryOf(directoryPath, parentPath): boolean

Defined in: functions/file.ts:374

Helper function to see if a directory is a subdirectory of another one.

Parameters

ParameterType
directoryPathstring
parentPathstring

Returns

boolean


makeDirectory()

function makeDirectory(directoryPath): void

Defined in: functions/file.ts:392

Helper function to synchronously make a new directory. Will recursively make as many subdirectories as needed.

If the recursive behavior is not desired, then use fs.mkdirSync directly.

This will throw an error if the directory cannot be created.

Parameters

ParameterType
directoryPathstring

Returns

void


mkdir()

function mkdir(directoryPath): void

Defined in: functions/file.ts:405

Alias for the makeDirectory function. Intended to be used in scripts.

Parameters

ParameterType
directoryPathstring

Returns

void


moveAllFilesInDirectory()

function moveAllFilesInDirectory(srcDirectory, dstDirectory): void

Defined in: functions/file.ts:410

Helper function to move all files from one directory to another one.

Parameters

ParameterType
srcDirectorystring
dstDirectorystring

Returns

void


moveFile()

function moveFile(srcPath, dstPath): void

Defined in: functions/file.ts:430

Helper function to synchronously move a file.

This will throw an error if the file cannot be moved.

(This is simply an alias for the renameFile function, since the Node.js API uses the same thing for both operations.)

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

void


mv()

function mv(srcPath, dstPath): void

Defined in: functions/file.ts:435

Alias for the moveFile function. Intended to be used in scripts.

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

void


renameFile()

function renameFile(srcPath, dstPath): void

Defined in: functions/file.ts:444

Helper function to synchronously rename a file.

This will throw an error if the file cannot be renamed.

Parameters

ParameterType
srcPathstring
dstPathstring

Returns

void


renameFileExtensions()

function renameFileExtensions(
directoryPath,
srcFileExtension,
dstFileExtension): Promise<void>

Defined in: functions/file.ts:460

Helper function to recursively rename all of the files in a directory from one file extension to another.

Parameters

ParameterTypeDescription
directoryPathstringThe path to the directory to crawl.
srcFileExtensionstringThe file extension to change from. Do not include a period in the string.
dstFileExtensionstringThe file extension to change to. Do not include a period in the string.

Returns

Promise<void>


rm()

function rm(...filePaths): void

Defined in: functions/file.ts:488

Alias for the deleteFileOrDirectory function. Intended to be used in scripts.

Parameters

ParameterType
...filePathsreadonly string[]

Returns

void


touch()

function touch(filePath): void

Defined in: functions/file.ts:497

Helper function to synchronously write 0 bytes to a file, similar to the touch command.

This will throw an error if the file cannot be written to.

Parameters

ParameterType
filePathstring

Returns

void