Next: , Previous: , Up: VFS.FileWrapper   [Index]


1.210.5 VFS.FileWrapper: delegation

creationTime

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).

full

Answer the size of the file identified by the receiver

isExecutable

Answer whether a file with the name contained in the receiver does exist and is executable

isReadable

Answer whether a file with the name contained in the receiver does exist and is readable

isWriteable

Answer whether a file with the name contained in the receiver does exist and is writeable

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 permission bits for the file identified by the receiver

mode: anInteger

Answer the permission bits for the file identified by the receiver

open: class mode: mode ifFail: aBlock

Open the receiver in the given mode (as answered by FileStream’s class constant methods)

remove

Remove the file with the given path name

size

Answer the size of the file identified by the receiver


Next: , Previous: , Up: VFS.FileWrapper   [Index]