Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 ruby 脚本,它在我的本地机器上运行,它定期从服务器 ftps 一个文件夹。现在,一旦我从本地机器上运行的 ruby 下拉文件夹,我想删除该文件夹。有可能这样做吗?
谢谢!!
我可以看到我们可以使用 sftp.remove("/path/to/file").wait 删除文件和 sftp.rmdir("/path/to/directory").wait 删除文件夹。