WP_Filesystem_FTPext::size( string $file ): int|false
Gets the file size (in bytes).
Parameters
-
$file
string Required -
Path to file.
Return
int|false Size of the file in bytes on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-ftpext.php
.
View all references
public function size( $file ) {
$size = ftp_size( $this->link, $file );
return ( $size > -1 ) ? $size : false;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |