Documentation

disk.file.copyto

disk.file.copyto

Copies file to the specified folder.

The response contains the same structure as in disk.file.get.

Parameters

Parameter Description
id File ID.
targetFolderId Folder ID.

Example

BX24.callMethod(
		"disk.file.copyto",
		{
			id: 10,
			targetFolderId: 226
		},
		function (result)
		{
			if (result.error())
				console.error(result.error());
			else
				console.dir(result.data());
		}
);


© «Bitrix24», 2001-2024
Up