ftp_base::nlist()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->nlist( $pathname, $arg );
$pathname **
-
Default: ""
$arg **
-
Default: ""

ftp_base::nlist() code WP 6.5.2

function nlist($pathname="", $arg="") {
	return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "NLST", "nlist");
}