ftp_base::is_exists()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->is_exists( $pathname );
$pathname (required)
-

ftp_base::is_exists() code WP 6.4.3

function is_exists($pathname) {
	return $this->file_exists($pathname);
}