WP_Filesystem_FTPext::mkdir
Creates a directory.
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
true|false. True on success, false on failure.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->mkdir( $path, $chmod, $chown, $chgrp );
- $path(string) (required)
- Path for new directory.
- $chmod(int|false)
- The permissions as octal number (or false to skip chmod).
Default: false - $chown(string|int|false)
- A user name or number (or false to skip chown).
Default: false - $chgrp(string|int|false)
- A group name or number (or false to skip chgrp).
Default: false
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::mkdir() WP Filesystem FTPext::mkdir code WP 6.8.3
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
$path = untrailingslashit( $path );
if ( empty( $path ) ) {
return false;
}
if ( ! ftp_mkdir( $this->link, $path ) ) {
return false;
}
$this->chmod( $path, $chmod );
return true;
}