fileCreateDir

Creates a new directory. Takes a directory path (absolute or relative). Returns 1 on success, 0 on failure (path is null, directory already exists, or insufficient permissions).

File IO

Parameters & Returns

Parameters

dirPath String

Returns

Int

Quick Summary

Creates a new directory. Takes a directory path (absolute or relative). Returns 1 on success, 0 on failure (path is null, directory already exists, or insufficient permissions).

Technical Exegesis...

Creates a new directory at the specified path. Returns 1 on success, 0 on failure (path is null, directory already exists, or insufficient permissions).

The path can be absolute or relative. Does not create parent directories automatically - they must already exist. The new directory is created with normal attributes (not hidden).

Example

Example.bam
; No example implemented yet