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 スクリプトがあり、サーバーから定期的にフォルダーを ftp します。ローカル マシンで実行されている ruby からフォルダーをプルダウンしたら、フォルダーを削除したいと思います。そうすることは可能ですか?
ありがとう!!
sftp.remove("/path/to/file").wait を使用してファイルを削除し、sftp.rmdir("/path/to/directory").wait を使用してフォルダーを削除できることがわかりました。