透過 FTPS 上傳文件

透過 FTPS 上傳文件

我需要自動上傳 Excel 檔案到 FTPS 伺服器。現在我正在使用curl,但如果有更好的選擇,我會洗耳恭聽。

到目前為止我所擁有的:

curl -k --data-binary --ftp-ssl -T "/path/to/file.xlsx" ftp://user:[email protected]

這將在伺服器上建立一個條目,但 Excel 檔案將為空白。這顯然不是預期的結果。

答案1

嘗試:

curl --upload-file uploadfile http://www.example.com/somefile.xslx

如果你有一個機制

相關內容