Wallogit.com
2017 © Pedro Peláez
Basic utilities to work with file system
Helper functions to work with the file system., (*2)
exists($filename);
// Determine if the file can be opened for reading
$file->isReadable($filename);
// Determine if the file can be opened for writing
$file->isWritable($filename);
// Trying to get the contents of the file. The file must exists and
// must be readable. If not - the default value is returned.
$contents = $file->get($filename, $default = null);
// Returns a default value
$contents = $file->get("unexisting_file", "Your default contents...");
// or you can use read as an alias of get
$contents = $file->read($filename, $default = null);
// Writes data in the file.
// If the file does not exists it will be created.
// If the $mode parameter is set the newly created file will have mode $mode
// Returns FALSE if operation fails.
$bytes_written = $file->put($filename, $data, $mode = null);
// You can use write alias of put
$bytes_written = $file->write($filename, $data, $mode = null);
// Appends data in the file.
// If the file does not exists it will be created.
// Returns FALSE if operation fails.
$bytes_appended = $file->append($filename, $data);
// Deletes a file. Returns TRUE if the file is successfully removed or didn't exists.
$file->delete($filename);
// Change mode for files. Returns FALSE on error.
$file->chmod($filename, 0664);
// Changes owner of the file. Returns FALSE on error.
// A user can be a user name (string) or a number (UID)
$file->chown($filename, $user);
// Changes group owner of the file. Returns FALSE on error.
// A group can be a string or a number (GID)
$file->chgrp($filename, $group);
// Get extension of the file. Returns false if the file does not exists
$file->ext($filename);
// Returns owner's user ID.
$file->getUID($filename)
// Returns owner's name
$file->getOwner($filanme)
// Returns group ID
$file->getGID($filename)
// Returns group name
$file->getGroup($filename)
// Gets file modification time
$file->mtime($filename)
// Copy file. Returns TRUE if copy is successful.
$file->copy($source, $destination, $overwrite = false);
// Renames / moves a file.
$file->move($source, $destination, $overwrite = false);
// TODO:
// symlink()
// touch()
?>
exists($name); // Determine if the directory can be accessed $dir->isReadable($name); // Determine if we can write files in the directory $dir->isWritable($name); // Change mode for directories. $dir->chmod($name, 0755); // Creates directory recursively. // If the directory is already created returns TRUE. // Returns FALSE on failure $dir->mkdir($name); ?>