WP_Filesystem_ftpsockets::move

Advertisement

Summery Summery

Moves a file.

Syntax Syntax

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

Parameters Parameters

$source

(Required) Path to the source file.

$destination

(Required) Path to the destination file.

$overwrite

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

Default value: false

Return Return

(bool) True on success, false on failure.

Source Source

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Advertisement

Leave a Reply