RealFileHandler is an handler for
files that are on disk, as well as for virtual files that end
up being on disk when they are opened for the first time.
Answer the creation time of the file identified by the receiver.
On some operating systems, this could actually be the last change time
(the `last change time' has to do with permissions, ownership and the
like).
finalize
Free the statistics for the receiver
isDirectory
Answer whether the file is a directory.
isSymbolicLink
Answer whether the file is a symbolic link.
lastAccessTime
Answer the last access time of the file identified by the receiver
lastChangeTime
Answer the last change time of the file identified by the receiver
(the `last change time' has to do with permissions, ownership and the
like). On some operating systems, this could actually be the
file creation time.
lastModifyTime
Answer the last modify time of the file identified by the receiver
(the `last modify time' has to do with the actual file contents).
mode
Answer the octal permissions for the file.
mode: mode
Set the octal permissions for the file to be `mode'.
name
Answer the name of the file identified by the receiver
name: aName
Private - Initialize the receiver's instance variables
realFileName
Answer the real file name for the file identified by the receiver
refresh
Refresh the statistics for the receiver
size
Answer the size of the file identified by the receiver
1.204.4 VFS.RealFileHandler: directory operations
createDir: dirName
Create a subdirectory of the receiver, naming it dirName.
do: aBlock
Evaluate aBlock once for each file in the directory represented by the
receiver, passing its name. aBlock should not return.