GC_Filesystem_ftpsockets::mkdir()

最后更新于:2021-11-27 19:28:36

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

Creates a directory.

参数

$path

(string) (Required) Path for new directory.

$chmod

(int|false) (Optional) The permissions as octal number (or false to skip chmod).

Default value: false

$chown

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

Default value: false

$chgrp

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

Default value: false

响应

(bool) True on success, false on failure.

源文件

文件: gc-admin/includes/class-gc-filesystem-ftpsockets.php

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