使用 Perl 从网站下载图像

发布于 2024-12-11 21:19:33 字数 329 浏览 0 评论 0原文

我正在尝试用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

说不完的你爱 2024-12-18 21:19:33

查看 wget 或 pavuk。您还可以从 perl 中调用它们。我通常就是这样做的。

Look at wget or pavuk. You can also call them from within perl. That's what I usually do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文