如何使用 Net::FTP 获取与模式匹配的文件?
How can I use Net::FTP
to get a file matching a pattern?
Basically what I want to do is:
$ftp->get("test*");
Should match all files starting with test and do a get()
.
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试来自 perlmonks.org 的此解决方案。本质上是执行远程 ls,使用
grep
过滤掉您不需要的内容,然后获取文件。顺便说一句,使用 Google 查找此内容大约需要 10 秒“net::FTP mget”
Try this solution from perlmonks.org. Essentially do a remote ls, filter out what you don't want with
grep
, then fetch the files.BTW, this took about 10 seconds to find with Google "net::FTP mget"