WP_Filesystem_FTPext::size( string $file ): int|false

Gets the file size (in bytes).


Parameters

$file string Required
Path to file.

Top ↑

Return

int|false Size of the file in bytes on success, false on failure.


Top ↑

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;
}

Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.