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

Move a file.


Description Description


Parameters 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


Top ↑

Return Return

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


Top ↑

Source Source

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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