Difference between revisions of "Working with Directories in Recital"

From Recital Documentation Wiki
Jump to: navigation, search
 
(Finding and Changing the Current Working Directory in Recital)
Line 3: Line 3:
 
===Deleting a Directory in Recital===
 
===Deleting a Directory in Recital===
 
===Finding and Changing the Current Working Directory in Recital===
 
===Finding and Changing the Current Working Directory in Recital===
 +
* [[CURDIR()|curdir()]] - return name of the current directory
 +
 +
<pre>
 +
character = curdir()
 +
</pre>
 +
 +
* [[DEFAULT()|default()]]- return name of the current directory
 +
 +
<pre>
 +
character = default()
 +
</pre>
 +
 +
* [[SET DEFAULT|set default]] - set current directory
 +
 +
<pre>
 +
set default to [<directory as character>]
 +
</pre>
 +
 
===Listing Files in a Directory in Recital===
 
===Listing Files in a Directory in Recital===
 
===Summary===
 
===Summary===

Revision as of 13:25, 25 January 2010

Working with Directories in Recital

Creating Directories in Recital

Deleting a Directory in Recital

Finding and Changing the Current Working Directory in Recital

  • curdir() - return name of the current directory
character = curdir()
  • default()- return name of the current directory
character = default()
set default to [<directory as character>]

Listing Files in a Directory in Recital

Summary