WP_Filesystem_SSH2::mkdir
Creates a directory.
Method of the class: WP_Filesystem_SSH2{}
No Hooks.
Returns
true|false. True on success, false on failure.
Usage
$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2(); $WP_Filesystem_SSH2->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.7.0 | Introduced. |
WP_Filesystem_SSH2::mkdir() WP Filesystem SSH2::mkdir code WP 7.0
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
$path = untrailingslashit( $path );
if ( empty( $path ) ) {
return false;
}
if ( ! $chmod ) {
$chmod = FS_CHMOD_DIR;
}
if ( ! ssh2_sftp_mkdir( $this->sftp_link, $path, $chmod, true ) ) {
return false;
}
// Set directory permissions.
ssh2_sftp_chmod( $this->sftp_link, $path, $chmod );
if ( $chown ) {
$this->chown( $path, $chown );
}
if ( $chgrp ) {
$this->chgrp( $path, $chgrp );
}
return true;
}