constructor __construct [line 50]
PhingFile __construct(
[
$arg1 = null], [
$arg2 = null])
|
|
constructor
Parameters:
method canRead [line 365]
Tests whether the application can read the file denoted by this abstract pathname.
Tags:
method canWrite [line 384]
Tests whether the application can modify to the file denoted by this abstract pathname.
Tags:
method compareTo [line 880]
Compares two abstract pathnames lexicographically. The ordering defined by this method depends upon the underlying system. On UNIX systems, alphabetic case is significant in comparing pathnames; on Win32 systems it is not.
Tags:
Parameters:
method contents [line 527]
Convenience method for returning the contents of this file as a string.
This method uses file_get_contents() to read file in an optimized way.
Tags:
method copyTo [line 686]
Simple-copies file denoted by this abstract pathname into another PhingFile
Tags:
Parameters:
method createNewFile [line 548]
true createNewFile(
[
$parents = true], [
$mode = 0777])
|
|
Atomically creates a new, empty file named by this abstract pathname if
and only if a file with this name does not yet exist. The check for the existence of the file and the creation of the file if it does not exist are a single operation that is atomic with respect to all other filesystem activities that might affect the file.
Tags:
Parameters:
method createTempFile [line 835]
void createTempFile(
$prefix,
$suffix, PhingFile
$directory)
|
|
Static method that creates a unique filename whose name begins with $prefix and ends with $suffix in the directory $directory. $directory is a reference to a PhingFile Object.
Then, the file is locked for exclusive reading/writing.
Tags:
Parameters:
method delete [line 561]
Deletes the file or directory denoted by this abstract pathname. If this pathname denotes a directory, then the directory must be empty in order to be deleted.
Tags:
method deleteOnExit [line 579]
Requests that the file or directory denoted by this abstract pathname be deleted when php terminates. Deletion will be attempted only for normal termination of php and if and if only Phing::shutdown() is called.
Once deletion has been requested, it is not possible to cancel the request. This method should therefore be used with care.
method equals [line 895]
Tests this abstract pathname for equality with the given object.
Returns
true
if and only if the argument is not
null
and is an abstract pathname that denotes the same file or directory as this abstract pathname. Whether or not two abstract pathnames are equal depends upon the underlying system. On UNIX systems, alphabetic case is significant in comparing pathnames; on Win32 systems it is not.
Parameters:
method exists [line 396]
Tests whether the file denoted by this abstract pathname exists.
Tags:
method getAbsoluteFile [line 254]
Returns the absolute form of this abstract pathname. Equivalent to getAbsolutePath.
Tags:
method getAbsolutePath [line 242]
Returns the absolute pathname string of this abstract pathname.
If this abstract pathname is already absolute, then the pathname string is simply returned as if by the getPath method. If this abstract pathname is the empty abstract pathname then the pathname string of the current user directory, which is named by the system property user.dir, is returned. Otherwise this pathname is resolved in a system-dependent way. On UNIX systems, a relative pathname is made absolute by resolving it against the current user directory. On Win32 systems, a relative pathname is made absolute by resolving it against the current directory of the drive named by the pathname, if any; if not, it is resolved against the current user directory.
Tags:
method getCanonicalFile [line 296]
Returns the canonical form of this abstract pathname. Equivalent to getCanonicalPath(.
Tags:
method getCanonicalPath [line 283]
Returns the canonical pathname string of this abstract pathname.
A canonical pathname is both absolute and unique. The precise definition of canonical form is system-dependent. This method first converts this pathname to absolute form if necessary, as if by invoking the getAbsolutePath() method, and then maps it to its unique form in a system-dependent way. This typically involves removing redundant names such as "." and .. from the pathname, resolving symbolic links (on UNIX platforms), and converting drive letters to a standard case (on Win32 platforms).
Every pathname that denotes an existing file or directory has a unique canonical form. Every pathname that denotes a nonexistent file or directory also has a unique canonical form. The canonical form of the pathname of a nonexistent file or directory may be different from the canonical form of the same pathname after the file or directory is created. Similarly, the canonical form of the pathname of an existing file or directory may be different from the canonical form of the same pathname after the file or directory is deleted.
Tags:
method getLinkTarget [line 484]
Returns the target of the symbolic link denoted by this abstract pathname
Tags:
method getMode [line 772]
Retrieve the mode of this file.
method getName [line 144]
Returns the name of the file or directory denoted by this abstract pathname. This is just the last name in the pathname's name sequence. If the pathname's name sequence is empty, then the empty string is returned.
Tags:
method getParent [line 165]
Returns the pathname string of this abstract pathname's parent, or null if this pathname does not name a parent directory.
The parent of an abstract pathname consists of the pathname's prefix, if any, and each name in the pathname's name sequence except for the last. If the name sequence is empty then the pathname does not name a parent directory.
Tags:
method getParentFile [line 190]
Returns the abstract pathname of this abstract pathname's parent, or null if this pathname does not name a parent directory.
The parent of an abstract pathname consists of the pathname's prefix, if any, and each name in the pathname's name sequence except for the last. If the name sequence is empty then the pathname does not name a parent directory.
Tags:
method getPath [line 205]
Converts this abstract pathname into a pathname string. The resulting string uses the default name-separator character to separate the names in the name sequence.
Tags:
method getPrefixLength [line 75]
Returns the length of this abstract pathname's prefix.
method getTempDir [line 821]
Returns the path to the temp directory.
method getUser [line 755]
Retrieve the owner of this file.
Tags:
method isAbsolute [line 218]
Tests whether this abstract pathname is absolute. The definition of
absolute pathname is system dependent. On UNIX systems, a pathname is absolute if its prefix is "/". On Win32 systems, a pathname is absolute if its prefix is a drive specifier followed by "\\", or if its prefix is "\\".
Tags:
method isDirectory [line 417]
Tests whether the file denoted by this abstract pathname is a directory.
Tags:
method isFile [line 436]
Tests whether the file denoted by this abstract pathname is a normal file. A file is normal if it is not a directory and, in addition, satisfies other system-dependent criteria. Any non-directory file created by a Java application is guaranteed to be a normal file.
Tags:
method isHidden [line 454]
Tests whether the file named by this abstract pathname is a hidden
file. The exact definition of hidden is system-dependent. On UNIX systems, a file is considered to be hidden if its name begins with a period character ('.'). On Win32 systems, a file is considered to be hidden if it has been marked as such in the filesystem. Currently there seems to be no way to dermine isHidden on Win file systems via PHP
Tags:
method isLink [line 469]
Tests whether the file denoted by this abstract pathname is a symbolic link.
Tags:
method lastModified [line 498]
Returns the time that the file denoted by this abstract pathname was last modified.
Tags:
method length [line 513]
Returns the length of the file denoted by this abstract pathname.
The return value is unspecified if this pathname denotes a directory.
Tags:
method listDir [line 606]
An listDir(
[
$filter = null])
|
|
Returns an array of strings naming the files and directories in the directory denoted by this abstract pathname.
If this abstract pathname does not denote a directory, then this method returns null Otherwise an array of strings is returned, one for each file or directory in the directory. Names denoting the directory itself and the directory's parent directory are not included in the result. Each string is a file name rather than a complete path.
There is no guarantee that the name strings in the resulting array will appear in any specific order; they are not, in particular, guaranteed to appear in alphabetical order.
Tags:
Parameters:
method listFiles [line 611]
void listFiles(
[
$filter = null])
|
|
Parameters:
method listRoots [line 811]
List the available filesystem roots.
A particular platform may support zero or more hierarchically-organized file systems. Each file system has a root directory from which all other files in that file system can be reached. Windows platforms, for example, have a root directory for each active drive; UNIX platforms have a single root directory, namely "/". The set of available filesystem roots is affected by various system-level operations such the insertion or ejection of removable media and the disconnecting or unmounting of physical or virtual disk drives.
This method returns an array of PhingFile objects that denote the root directories of the available filesystem roots. It is guaranteed that the canonical pathname of any file physically present on the local machine will begin with one of the roots returned by this method.
The canonical pathname of a file that resides on some other machine and is accessed via a remote-filesystem protocol such as SMB or NFS may or may not begin with one of the roots returned by this method. If the pathname of a remote file is syntactically indistinguishable from the pathname of a local file then it will begin with one of the roots returned by this method. Thus, for example, PhingFile objects denoting the root directories of the mapped network drives of a Windows platform will be returned by this method, while PhingFile objects containing UNC pathnames will not be returned by this method.
Tags:
method mkdir [line 656]
true mkdir(
[
$mode = 0755])
|
|
Creates the directory named by this abstract pathname.
Tags:
Parameters:
method mkdirs [line 635]
true mkdirs(
[
$mode = 0755])
|
|
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.
Tags:
Parameters:
method removeTempFile [line 856]
If necessary, $File the lock on $File is removed and then the file is deleted
Tags:
method renameTo [line 671]
Renames the file denoted by this abstract pathname.
Tags:
Parameters:
method setLastModified [line 714]
true setLastModified(
time
$time)
|
|
Sets the last-modified time of the file or directory named by this abstract pathname.
All platforms support file-modification times to the nearest second, but some provide more precision. The argument will be truncated to fit the supported precision. If the operation succeeds and no intervening operations on the file take place, then the next invocation of the lastModified method will return the (possibly truncated) time argument that was passed to this method.
Tags:
Parameters:
method setMode [line 763]
Sets the mode of the file
Parameters:
method setReadOnly [line 733]
Marks the file or directory named by this abstract pathname so that
only read operations are allowed. After invoking this method the file or directory is guaranteed not to change until it is either deleted or marked to allow write access. Whether or not a read-only file or directory may be deleted depends upon the underlying system.
Tags:
method setUser [line 746]
void setUser(
mixed
$user)
|
|
Sets the owner of the file.
Tags:
Parameters:
method toString [line 903]
Backwards compatibility -- use PHP5's native __tostring method.
method toURI [line 327]
Constructs a file: URI that represents this abstract pathname.
Not implemented yet
method toURL [line 316]
Converts this abstract pathname into a file: URL. The exact form of the URL is system-dependent. If it can be determined that the file denoted by this abstract pathname is a directory, then the resulting URL will end with a slash.
Usage note: This method does not automatically escape characters that are illegal in URLs. It is recommended that new code convert an abstract pathname into a URL by first converting it into a URI, via the toURI() method, and then converting the URI into a URL via the URI::toURL()
Tags:
method _constructFileParentStringChild [line 112]
void _constructFileParentStringChild(
$parent, [
$child = null])
|
|
Parameters:
method _constructPathname [line 81]
void _constructPathname(
$pathname)
|
|
Parameters:
method _constructStringParentStringChild [line 93]
void _constructStringParentStringChild(
$parent, [
$child = null])
|
|
Parameters:
method _slashify [line 337]
void _slashify(
$path,
$isDirectory)
|
|
Parameters:
method __toString [line 908]