fileCurrentDir

Returns the current working directory path. Takes no parameters. Returns the absolute path of the current working directory, or an empty string if the operation fails.

File IO

Parameters & Returns

Parameters

This function takes no parameters.

Returns

String

Quick Summary

Returns the current working directory path. Takes no parameters. Returns the absolute path of the current working directory, or an empty string if the operation fails.

Technical Exegesis...

Returns the absolute path of the current working directory. Returns an empty string if the operation fails.

The returned path uses the platform's native path separator (backslash on Windows). Useful for determining the program's current location or for building relative paths.

Example

Example.bam
; No example implemented yet