Documentation

disk.file.delete

disk.file.delete

Deletes the file for good.

The response "result": True means the successful deletion of the file.

Parameters

Parameter Description
id File ID.

Example

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




© «Bitrix24», 2001-2024
Up