WP_Filesystem_ftpsockets::mkdir( string $path, int|false $chmod = false, string|int|false $chown = false, string|int|false $chgrp = false )
Creates a directory.
Parameters
- $path
-
(Required) Path for new directory.
- $chmod
-
(Optional) The permissions as octal number (or false to skip chmod).<br>
Default value: false
- $chown
-
(Optional) A user name or number (or false to skip chown).<br>
Default value: false
- $chgrp
-
(Optional) A group name or number (or false to skip chgrp).<br>
Default value: false
Return
(bool) True on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-ftpsockets.php
public function mkdir($path, $chmod = false, $chown = false, $chgrp = false ) {
$path = untrailingslashit($path);
if ( empty($path) )
return false;
if ( ! $this->ftp->mkdir($path) )
return false;
if ( ! $chmod )
$chmod = FS_CHMOD_DIR;
$this->chmod($path, $chmod);
return true;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |