ftp_base::rawlist()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

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

ftp_base::rawlist() code WP 6.5.2

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