| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
Procedures which manipulates the files.
Changes the working directory.
Returns true if the given path is a directory.
Returns true if the given path is a valid file.
Returns true if the given path exists.
Gets the files in the given directory. This procedure don’t evaluate recursively. wildcard-filter-expr can be specified as follows.
| (and [expr …]) | selects the paths about which the given propositions are true. | ||||
| (or [expr …]) | selects the paths about which at least one of the given propositions is true. | ||||
| (not expr) | selects the paths about which the given condition is false. | ||||
| exist | selects the valid paths. | ||||
| directory | selects the valid directories. | ||||
| file | selects the valid files. | ||||
| wildcard | selects the paths which matches the given wildcard. The valid metacharacters are shown as follows. 
 | ||||
| […] | character set | 
apply fold to subdirectories of the given path (which filtered the wildcard). The given procedure needs two arguments. A file name is given as the first argument, and result is given as the second.
combinates a path and a file name. This procedure avoids OS Dependencies.
converts the given path to an absolute path.
return true if the path is an absolute path.
return true if the path is a relative path.
checks the timestamp of time1 is equals to one of time2. File paths, SRFI-19 time objects and seconds from the UNIX epoch are avaliable as arguments.
checks timestamp of time1 >= timestamp of time2.
checks timestamp of time1 > timestamp of time2.
checks timestamp of time1 <= timestamp of time2.
checks timestamp of time1 < timestamp of time2.
creates a directory.
copies src-file to dest-file
moves src-file to dest-file
removes the given files.
removes the given directory.
sets timestamps of the files to time when applied the procedure.
changes privilege of the files. Avail mode are shown as follows, which is like chmod(1).
1. specfication by three characters
The valid characters are shown as follows.
the first character:
| u | current user | 
| a | all users | 
the second character:
| + | add privilege which specified by the third character. | 
| - | remove privilege privilege which specified by the third. | 
the third character:
| r | readable | 
| w | writable | 
| x | executable | 
2. specification by two octal numbers
specifies two numbers. Meaning the number is shown as follows.
The first number is applied for current user, and the second is applied for all users.
(Though tree numbers are specified as chmod(1), only two numbers are specified as this procedure.)
Bits of the number means as follows.
| 1 | privilege for execute | 
| 2 | privilege for writing | 
| 4 | privilege for reading | 
gets free space, total space and usable space of the given partition by bytes, respectively.
| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | 
 
  This document was generated on August 9, 2012 using texi2html 5.0.