fileChangeDir

Changes the current working directory. Takes a directory path (absolute or relative). Returns 1 on success, 0 on failure (invalid path or null).

File IO

Parameters & Returns

Parameters

dirPath String

Returns

Int

Quick Summary

Changes the current working directory. Takes a directory path (absolute or relative). Returns 1 on success, 0 on failure (invalid path or null).

Technical Exegesis...

Changes the current working directory to the specified path. Returns 1 on success, 0 on failure (invalid path or null).

Affects all subsequent file operations that use relative paths. The path can be absolute or relative to the current directory.

Example

Example.bam
; No example implemented yet