On this page
WP_Filesystem_ftpsockets::mkdir( string $path, int|false $chmod = false, string|int|false $chown = false, string|int|false $chgrp = false ): bool
Creates a directory.
Parameters
$pathstring Required-
Path for new directory.
$chmodint|false Optional-
The permissions as octal number (or false to skip chmod).
Default:
false $chownstring|int|false Optional-
A user name or number (or false to skip chown).
Default:
false $chgrpstring|int|false Optional-
A group name or number (or false to skip chgrp).
Default:
false
Return
bool True on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-ftpsockets.php. View all references
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;
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Filesystem_ftpsockets::chmod() wp-admin/includes/class-wp-filesystem-ftpsockets.php | Changes filesystem permissions. |
| untrailingslashit() wp-includes/formatting.php | Removes trailing forward slashes and backslashes if they exist. |
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_filesystem_ftpsockets/mkdir