使用 Perl 从网站下载图像
我正在尝试用 Perl 编写一个程序来从网站下载图像。问题是我想保留与下载网站相同的目录结构。
例如,如果要下载的图像来自以下网址。然后程序应创建目录名称“文件夹”并在该下载内,然后将图像放入最里面的文件夹中。
http://www.example.com/folder/download/images.jpg
我正在使用 LWP 下载图像。
use LWP::Simple;
getstore($fileURL,$filename);
I am trying to write a program in perl to download images from a website. The problem is I would like to retain the same directory structure as the website it is being downloaded from.
e.g. If the image to be download is from the below url. Then the program should create the directory name "folder" and inside that download and then put the image inside the inner most folder.
http://www.example.com/folder/download/images.jpg
I am using LWP to download the images.
use LWP::Simple;
getstore($fileURL,$filename);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 wget 或 pavuk。您还可以从 perl 中调用它们。我通常就是这样做的。
Look at wget or pavuk. You can also call them from within perl. That's what I usually do.