A way to automatically upload a folder structure zip file

LabKey Support Forum
A way to automatically upload a folder structure zip file Jon (LabKey DevOps)  2017-04-26 13:41
Status: Closed
 
Hi,

Our default URL patterns did change from 15.X to 16.X (https://www.labkey.org/Documentation/wiki-page.view?name=url), so technically this should still work provided the actual API that Ben mentioned is still constructed to work in this fashion. But again, since this is not a public API, this is something that isn't officially supported.

Regarding the folderZip="@${FILE}" part, the @ sign is apart of cURL, telling curl to read the file. The ${FILE} part indicates that it's a variable that is in this case pointing to an actual file.

If you were to hardcode the file path, since you would be using @/path/to/file for the format, you should be using something like:

folderZip="@C:\path\to\file"

Regards,

Jon