DownloadDocument
SharePointライブラリからドキュメントをダウンロードします。
Stored Procedure Specific Information
Insert
RemoteFile can be both relative to the library, or it can be the full URL of the file. Below are some examples:
EXECUTE DownloadAttachment File = 'C:/Users/User/Desktop/DownloadedFile.txt', Library = 'Shared Documents', RemoteFile = 'https://mysite.sharepoint.com/Shared Documents/newFolder/FileToDownload.txt'; EXECUTE DownloadAttachment File = 'C:/Users/User/Desktop/DownloadedFile.txt', Library = 'Shared Documents', RemoteFile = '/newFolder/FileToDownload.txt';
Input
Name | Type | Description |
File | String | 保存されるファイルのパス。 |
Library | String | SharePointサーバー上のライブラリの名前。例えば、'共有ドキュメント' です。 |
RemoteFile | String | ライブラリへの相対パスまたはファイルの完全URLのいずれかを指定できます。 |
Result Set Columns
Name | Type | Description |
Result | String | 操作が成功したかどうかを示すBoolean値。 |