GC_Filesystem_FTPext::copy()

最后更新于:2021-11-27 18:45:42

GC_Filesystem_FTPext::copy( string$source, string$destination, bool$overwrite=false, int|false$mode=false)

Copies a file.

参数

$source

(string) (Required) Path to the source file.

$destination

(string) (Required) Path to the destination file.

$overwrite

(bool) (Optional) Whether to overwrite the destination file if it exists.

Default value: false

$mode

(int|false) (Optional) The permissions as octal number, usually 0644 for files, 0755 for dirs.

Default value: false

响应

(bool) True on success, false on failure.

源文件

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

	public function copy( $source, $destination, $overwrite = false, $mode = false ) {
		if ( ! $overwrite && $this->exists( $destination ) ) {
			return false;
		}

		$content = $this->get_contents( $source );

		if ( false === $content ) {
			return false;
		}

		return $this->put_contents( $destination, $content, $mode );
	}