Java - 通过 FTP 上传文件夹?
如何通过 Java 通过 FTP 上传整个文件夹?
我一直在寻找如何上传单个文件,但不是上传包含目录和文件的整个文件夹。
How do I upload a whole folder via FTP through Java?
I keep on finding how to upload an individual file, but not a whole folder that contains directories and files..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要 ftp 整个文件夹,请查看 FTP 的
mput
命令。任何用 Java 实现的半像样的 FTP 客户端都将支持 mput FTP 命令。
To ftp a whole folder, look into the
mput
command of FTP.Any half-decent FTP client implemented in Java will support the
mput
FTP command.