| Directory-class {RPPASPACE} | R Documentation |
Class “Directory”
Description
The Directory class represents a file system directory.
Usage
Directory(path)
is.Directory(x)
## S4 method for signature 'character,Directory'
coerce(from, to, strict=TRUE)
## S4 method for signature 'Directory,character'
coerce(from, to, strict=TRUE)
Arguments
path |
character string specifying a directory |
x |
object of class |
from |
object of class |
to |
object of class |
strict |
logical scalar. If |
Value
The Directory generator returns an object of class Directory.
The is.Directory method returns TRUE if its
argument is an object of class Directory.
Objects from the Class
Although objects of the class can be created by a direct call to
new, the preferred method is to use the Directory
generator function.
Slots
path:character string specifying a directory
Methods
- coerce
-
signature(from = "Directory", to = "character"):
Coerce an object of classDirectoryto its character string pathname equivalent. - coerce
-
signature(from = "character", to = "Directory"):
Coerce a character string specifying directory pathname to an equivalent object of classDirectory.
Note
The coercion methods should not be called explicitly; instead, use an
explicit call to the as method.
Author(s)
P. Roebuck paul_roebuck@comcast.net, James M. Melott jmmelott@mdanderson.org