"HTTP SharePoint Get" downloads files from a Windows SharePoint Server website, using HTTP[S]. This script is not suitable for files larger than a few dozen megabytes, because it loads the entire file into memory before saving it.
Use this script like a source. Then configure one or destinations to save the files to their final locations.
Input Parameters
SharePoint_BaseURL (Required) - The base URL of the website. For SharePoint 2003, this will be something like https://server. For SharePoint 2007, this will be something like https://server/Docs.
SharePoint_DeleteAfterDownload - Whether the source file should be deleted from SharePoint after a successful download. Defaults to False.
SharePoint_IgnoreCertProblems - Whether problems with the remote server certificate (such as signer not trusted) should be ignored. Defaults to False.
SharePoint_HTTPUser - The username, for HTTP authentication.
SharePoint_HTTPPassword - The password, for HTTP authentication.
SharePoint_Folder (Required) - The name of the SharePoint folder, including parent folders if applicable. For SharePoint 2003, use "Shared Documents" for the default library. For SharePoint 2007, use "Documents" for the default library. Date and parameter macros are permitted.
SharePoint_FileMask (Required) - The filemask specifying which files to download; e.g., *.txt. Date and parameter macros are permitted.