wp-admin/includes/class-wp-filesystem-direct.php
Lines:
1 to 38 of 38
<?php /** * WordPress Direct Filesystem. * * @package WordPress * @subpackage Filesystem */ /* class WP_Filesystem_Direct */ /* function WP_Filesystem_Direct::__construct() – Constructor. */ /* function WP_Filesystem_Direct::get_contents() – Reads entire file into a string. */ /* function WP_Filesystem_Direct::get_contents_array() – Reads entire file into an array. */ /* function WP_Filesystem_Direct::put_contents() – Writes a string to a file. */ /* function WP_Filesystem_Direct::cwd() – Gets the current working directory. */ /* function WP_Filesystem_Direct::chdir() – Changes current directory. */ /* function WP_Filesystem_Direct::chgrp() – Changes the file group. */ /* function WP_Filesystem_Direct::chmod() – Changes filesystem permissions. */ /* function WP_Filesystem_Direct::chown() – Changes the owner of a file or directory. */ /* function WP_Filesystem_Direct::owner() – Gets the file owner. */ /* function WP_Filesystem_Direct::getchmod() – Gets the permissions of the specified file or filepath in their octal format. */ /* function WP_Filesystem_Direct::group() – Gets the file’s group. */ /* function WP_Filesystem_Direct::copy() – Copies a file. */ /* function WP_Filesystem_Direct::move() – Moves a file. */ /* function WP_Filesystem_Direct::delete() – Deletes a file or directory. */ /* function WP_Filesystem_Direct::exists() – Checks if a file or directory exists. */ /* function WP_Filesystem_Direct::is_file() – Checks if resource is a file. */ /* function WP_Filesystem_Direct::is_dir() – Checks if resource is a directory. */ /* function WP_Filesystem_Direct::is_readable() – Checks if a file is readable. */ /* function WP_Filesystem_Direct::is_writable() – Checks if a file or directory is writable. */ /* function WP_Filesystem_Direct::atime() – Gets the file’s last access time. */ /* function WP_Filesystem_Direct::mtime() – Gets the file modification time. */ /* function WP_Filesystem_Direct::size() – Gets the file size (in bytes). */ /* function WP_Filesystem_Direct::touch() – Sets the access and modification times of a file. */ /* function WP_Filesystem_Direct::mkdir() – Creates a directory. */ /* function WP_Filesystem_Direct::rmdir() – Deletes a directory. */ /* function WP_Filesystem_Direct::dirlist() – Gets details for files in a directory or a specific file. */