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

Copy a file.


Parameters

$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) (Optional) The permissions as octal number, usually 0644 for files, 0755 for dirs.

Default value: false


Return

(bool) True if file copied successfully, False otherwise.


Source

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

	public function copy( $source, $destination, $overwrite = false, $mode = false ) {
		return false;
	}

Changelog

Changelog
Version Description
WP-2.5.0 Introduced.