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

In this article

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 ) {
	$path = untrailingslashit( $path );

	if ( empty( $path ) ) {
		return false;
	}

	if ( ! $chmod ) {
		$chmod = FS_CHMOD_DIR;
	}

	if ( ! ssh2_sftp_mkdir( $this->sftp_link, $path, $chmod, true ) ) {
		return false;
	}

	// Set directory permissions.
	ssh2_sftp_chmod( $this->sftp_link, $path, $chmod );

	if ( $chown ) {
		$this->chown( $path, $chown );
	}

	if ( $chgrp ) {
		$this->chgrp( $path, $chgrp );
	}

	return true;
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

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