WP_Filesystem_FTPext::chdir() – Changes current directory.
You appear to be a bot. Output may be restricted
Description
Changes current directory.
Usage
$bool = WP_Filesystem_FTPext::chdir( $dir );
Parameters
- $dir
- ( string ) required – The new current directory.
Returns
bool True on success, false on failure.
Source
File name: wordpress/wp-admin/includes/class-wp-filesystem-ftpext.php
Lines:
1 to 3 of 3
public function chdir( $dir ) { return @ftp_chdir( $this->link, $dir ); }