WP_Filesystem_SSH2::size()
Gets the file size (in bytes).
Method of the class: WP_Filesystem_SSH2{}
No Hooks.
Return
Int|false
. Size of the file in bytes on success, false on failure.
Usage
$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2(); $WP_Filesystem_SSH2->size( $file );
- $file(string) (required)
- Path to file.
Changelog
Since 2.7.0 | Introduced. |
WP_Filesystem_SSH2::size() WP Filesystem SSH2::size code WP 6.6.2
public function size( $file ) { return filesize( $this->sftp_path( $file ) ); }