如何使用批处理文件将图片自动下载到我的电脑的PC图片部分?
我已经尝试过在谷歌上找工作而没找到任何东西!
答案 0 :(得分:2)
例如,我在powershell中使用一个小函数,并使用批处理文件我可以下载这样的文件:
@echo off
Set "URL=http://www.kcc.edu/campaigns/PublishingImages/poh.jpg"
Set "File=%USERPROFILE%\Pictures\Hello.png"
Call :Download "%URL%" "%File%"
Start "" "%File%"
exit
::**********************************************************************************
:Download <url> <File>
Powershell.exe -command "(New-Object System.Net.WebClient).DownloadFile('%1','%2')"
exit /b
::**********************************************************************************
以下是另一个示例,我使用相同的功能从 Virustotal.com 下载名为 VirusTotal Uploader 的工具来上传和检查文件。
答案 1 :(得分:1)
使用bitsadmin:
bitsadmin /transfer myDownloadJob /download /priority normal http://downloadsrv/jpg.jpg "%userprofile%\pictures\jpg.jpg"
call winhhtpjs.bat https://example.com/files/jpg.jpg -saveTo "%userprofile%\pictures\jpg.jpg"
每个用户图片目录位于%userprofile%\pictures