This wiki is out of date, use the continuation of this wiki instead

Chdir

From FenixWiki

Revision as of 15:16, 19 April 2007 by Sandman (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search


Contents

Definition

INT ChDir ( <STRING folder> )

Sets the current path of execution.

Parameters

STRING folder - The folder to be entered from the current path of execution or a new path of execution.

Returns

INT : Success

0 (false) - Setting of current path of execution failed.
1 (true) - Setting of current path of execution was successful.

Example

Program example;
Begin

    say(CD());
    ChDir("..");
    say(CD());

    Loop
        frame;
    End

End

Used in example: cd(), say()

Personal tools