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

$path string Required
Path for new directory.
$chmod int|false Optional
The permissions as octal number (or false to skip chmod).

Default: false

$chown string|int|false Optional
A user name or number (or false to skip chown).

Default: false

$chgrp string|int|false Optional
A group name or number (or false to skip chgrp).

Default: false


Top ↑

Return

bool True on success, false on failure.


Top ↑

Source

File: wp-admin/includes/class-wp-filesystem-base.php. View all references

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

Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.