File
A File which holds the abstract pathname to a location on the filesystem, be it for a regular file, directory, symbolic link, etc.
Constructors
Properties
Functions
If this abstract pathname is already absolute, then the pathname File is simply returned.
If this abstract pathname is already absolute, then the pathname string is simply returned.
Writes the full contents of array to the file. If the file exists, all new data will be appended to the end of the file.
Writes the full contents of text to the file. If the file exists, all new text will be appended to the end of the file.
A canonical pathname is both absolute and unique. The precise definition of canonical form is system-dependent.
A canonical pathname is both absolute and unique. The precise definition of canonical form is system-dependent.
Tests whether this abstract pathname is absolute.
Tests whether this abstract pathname is absolute.
Creates the directory named by this abstract pathname, including any necessary but nonexistent parent directories. Note that if this operation fails it may have succeeded in creating some of the necessary parent directories. In this event the implementation is such that it attempts to "clean up" any parent directories that it created, before throwing its exception.
Opens a File for write operations, appending all new data to the end of the file.
Opens a File for read operations.
Opens a File for read/write operations. The File is not truncated if it already exists, and the initial FileStream.position is 0
.
Writes the full contents of array to the file.