WP_Filesystem_Base::mkdir( string $path, mixed $chmod = false, mixed $chown = false, mixed $chgrp = false )

Create a directory.


Description Description


Parameters Parameters

$path

(string) (Required) Path for new directory.

$chmod

(mixed) (Optional) The permissions as octal number, (or False to skip chmod)

Default value: false

$chown

(mixed) (Optional) A user name or number (or False to skip chown)

Default value: false

$chgrp

(mixed) (Optional) A group name or number (or False to skip chgrp).

Default value: false


Top ↑

Return Return

(bool) False if directory cannot be created, true otherwise.


Top ↑

Source Source

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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