W3cubDocs

/WordPress

WP_Filesystem_Base::mkdir( string $path, int|false $chmod = false, string|int|false $chown = false, string|int|false $chgrp = false ): bool

Creates a directory.

Parameters

$pathstringrequired
Path for new directory.
$chmodint|falseoptional
The permissions as octal number (or false to skip chmod).

Default:false

$chownstring|int|falseoptional
A user name or number (or false to skip chown).

Default:false

$chgrpstring|int|falseoptional
A group name or number (or false to skip chgrp).

Default:false

Return

bool True on success, false on failure.

Source

public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
	return false;
}

Changelog

Version Description
2.5.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_filesystem_base/mkdir