WP_Filesystem_ftpsockets::mkdir()publicWP 2.5.0

Creates a directory.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Return

true|false. True on success, false on failure.

Usage

$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets();
$WP_Filesystem_ftpsockets->mkdir( $path, $chmod, $chown, $chgrp );
$path(string) (required)
Path for new directory.
$chmod(int|false)
The permissions as octal number (or false to skip chmod).
Default: false
$chown(string|int|false)
A user name or number (or false to skip chown).
Default: false
$chgrp(string|int|false)
A group name or number (or false to skip chgrp).
Default: false

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::mkdir() code WP 6.4.3

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;
}