WP_Filesystem_FTPext::is_file( string $file ): bool

In this article

Checks if resource is a file.

Parameters

$filestringrequired
File path.

Return

bool Whether $file is a file.

Source

public function is_file( $file ) {
	return $this->exists( $file ) && ! $this->is_dir( $file );
}

Changelog

VersionDescription
2.5.0Introduced.

User Contributed Notes

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