WP_Filesystem_SSH2::mkdir() WordPress Method
The WP_Filesystem_SSH2::mkdir() function is used to create a new directory on a remote server. The function takes two parameters: the path of the new directory and the permissions for the new directory.
WP_Filesystem_SSH2::mkdir( string $path, int|false $chmod = false, string|int|false $chown = false, string|int|false $chgrp = false ) #
Creates a directory.
Parameters
- $path
(string)(Required)Path for new directory.
- $chmod
(int|false)(Optional) The permissions as octal number (or false to skip chmod).
Default value: false
- $chown
(string|int|false)(Optional) A user name or number (or false to skip chown).
Default value: false
- $chgrp
(string|int|false)(Optional) A group name or number (or false to skip chgrp).
Default value: false
Return
(bool) True on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-ssh2.php
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |