WP_Filesystem_Base::move( string $source, string $destination, bool $overwrite = false )

Move 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


Return

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


Source

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

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

Changelog

Changelog
Version Description
WP-2.5.0 Introduced.