Difference between revisions of "Working with Directories in Recital"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) (→Working with Directories in Recital) |
Yvonnemilne (Talk | contribs) (→Listing Files in a Directory in Recital) |
||
Line 22: | Line 22: | ||
===Listing Files in a Directory in Recital=== | ===Listing Files in a Directory in Recital=== | ||
+ | * [[DIR|dir]] - display a directory of files | ||
+ | |||
+ | <pre> | ||
+ | dir [<skeleton as character>] | ||
+ | </pre> | ||
+ | |||
+ | * [[ADIR()|adir()]] - return number of files matching a pattern and load filenmames and information into arrays | ||
+ | |||
+ | <pre> | ||
+ | numeric = adir(<skeleton as character> [, <filenames as array> [, <filesizes as array> | ||
+ | [, <creationdates as array> [, <creationtimes as array> [, <attributes as array>]]]]]) | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | * [[FILECOUNT()|filecount()]]- return number of files matching a pattern | ||
+ | |||
+ | <pre> | ||
+ | numeric = filecount(<skeleton as character>) | ||
+ | </pre> | ||
+ | |||
===Finding and Changing the Recital Search Path=== | ===Finding and Changing the Recital Search Path=== | ||
* [[PATH()|path()]] - return current Recital path setting | * [[PATH()|path()]] - return current Recital path setting |
Revision as of 13:27, 25 January 2010
Contents
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 - set current directory
set default to [<directory as character>]
Listing Files in a Directory in Recital
- dir - display a directory of files
dir [<skeleton as character>]
- adir() - return number of files matching a pattern and load filenmames and information into arrays
numeric = adir(<skeleton as character> [, <filenames as array> [, <filesizes as array> [, <creationdates as array> [, <creationtimes as array> [, <attributes as array>]]]]])
- filecount()- return number of files matching a pattern
numeric = filecount(<skeleton as character>)
Finding and Changing the Recital Search Path
- path() - return current Recital path setting
character = path()
- set path - set Recital path
set path to [<directories as character>]