WP_Filesystem_ftpsockets::copy

Advertisement

Summery Summery

Copies a file.

Syntax Syntax

WP_Filesystem_ftpsockets::copy( string $source, string $destination, bool $overwrite = false, int|false $mode = 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

$mode

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

Default value: false

Return Return

(bool) True on success, false on failure.

Source Source

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

	/**
	 * Copies a file.
	 *
	 * @since 2.5.0
	 *
	 * @param string    $source      Path to the source file.
	 * @param string    $destination Path to the destination file.
	 * @param bool      $overwrite   Optional. Whether to overwrite the destination file if it exists.
	 *                               Default false.
	 * @param int|false $mode        Optional. The permissions as octal number, usually 0644 for files,
	 *                               0755 for dirs. Default false.

Advertisement

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Advertisement

Leave a Reply