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 14:59, 19 April 2007 (edit)
Sandman (Talk | contribs)

← Previous diff
Current revision (19:52, 29 August 2008) (edit) (undo)
Sandman (Talk | contribs)
m (Example)
 
(2 intermediate revisions not shown.)
Line 1: Line 1:
[[Category:functions]] [[Category:functions]]
[[Category:files]] [[Category:files]]
- 
-See also [[CD1|'''VOID''' CD( <'''STRING''' folder> )]] 
==Definition== ==Definition==
-'''STRING''' CD ( )+'''STRING''' cd ( [<'''STRING''' folder>] )
-Returns the current path of execution.+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.
 + 
 +== Parameters ==
 +{|
 +| '''STRING''' folder || - The folder to be entered from the current path of execution or a new path of execution.
 +|}
== Returns == == Returns ==
Line 14: Line 19:
== Example == == Example ==
<pre> <pre>
-Program example;+Process Main()
Begin Begin
- say(CD());+ say(cd());
- ChDir("..");+ say(chdir(".."));
- say(CD());+ say(cd());
- Loop+ Repeat
frame; frame;
- End+ Until(key(_ESC))
End End
</pre> </pre>
-Used in example: [[chdir]](), [[say]]()+Used in example: [[chdir]](), [[say]](), [[key]]()
 + 
 +{{Funcbox
 + | category=Files
 +}}

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