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

Cd

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 23:43, 21 January 2008 (edit)
Sandman (Talk | contribs)
(merged CD1 in)
← Previous diff
Current revision (19:52, 29 August 2008) (edit) (undo)
Sandman (Talk | contribs)
m (Example)
 
Line 19: Line 19:
== Example == == Example ==
<pre> <pre>
-Program example;+Process Main()
Begin Begin

Current revision


Contents

[edit] Definition

STRING cd ( [<STRING folder>] )

Sets the current path of execution if folder was specified and returns it.

Note that it is highly recommended to use chdir() for changing the current path of execution, as cd() will make Fenix crash when a folder is specified and the returned path of execution is used in the Fenix program. Just using cd() without a folder is not a problem.

[edit] Parameters

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

[edit] Returns

STRING : The current path of execution.

[edit] Example

Process Main()
Begin

    say(cd());
    say(chdir(".."));
    say(cd());

    Repeat
        frame;
    Until(key(_ESC))

End

Used in example: chdir(), say(), key()


Files Functions
Cd() • Chdir() • Fclose() • Feof() • Fgets() • File() • File_exists() • Flength() • Fopen() • Fputs() • Fread() • Fseek() • Ftell() • Fwrite() • Glob() • Load() • Mkdir() • Rmdir() • Save() •
Personal tools