将文件从 linux 发送到 SharePoint 时出现问题。如果我要上传到现有目录,一切都很好,我使用这种方法:
curl --ntlm --user username:password --upload-file myfile.xls https://sharepointserver.com/sites/mysite/myfile.xls
不幸的是,当我将目标指向不存在的目录时会出现问题,例如:
curl --ntlm --user username:password --upload-file myfile.xls https://sharepointserver.com/sites/mysite/nonexist/myfile.xls
我希望它在路径上创建所有必要的目录。我尝试使用“--create-dirs”CURL 选项,但它不起作用。
任何想法如何实现目标?它实际上不必是 CURL,我可以使用 linux 上可用的不同方法。