使用启动Chrome从URL下载文件 [英] Downloading file from URL using start chrome

查看:85
本文介绍了使用启动Chrome从URL下载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个批处理文件,该文件打开一个URL以下载一个csv文件,然后我需要移动该csv形式的downloads文件夹,然后将其重命名为另一个.

I have a batch file that opens a URL to download a csv file, then I need to move and then rename that csv form downloads folder to other one.

我所拥有的是:

@echo off

SET CCDIR=C:\Users\(username)\Desktop
SET LOADDIR=C:\Users\(username)\Downloads

ECHO ***************************************************************************
ECHO  Downloading the file
ECHO ***************************************************************************

start chrome (URL string)

:NEXT

ECHO ***************************************************************************
ECHO  Move CSV file from Downloads folder to Desktop
ECHO ***************************************************************************

move %LOADDIR%\*(file string)* %CCDIR%
ren %CCDIR%\*(file string)* (new file name)

我想在同一个蝙蝠中执行所有操作,但是只是开始chrome正在运行,蝙蝠忽略了移动和回合.

I want to execute it all in the same bat, but just the start chrome is working, the bat is ignoring the move and ren.

我该怎么办?

推荐答案

根据我的评论,您可以尝试使用本示例,使用Certuil command

Based on my comment, you can give a try for this example to download a file with Certuil command

@echo off
Title Downloading a file using Certutil Command
Mode 70,5 & color 0A
SET CCDIR=%userprofile%\Desktop
SET LOADDIR=%userprofile%\Downloads
set "url=https://download.sysinternals.com/files/PSTools.zip"
echo(
ECHO   ******************************************************************
ECHO          Please wait a while ... Downloading the file ...
ECHO   ******************************************************************
Call :download %url% %LOADDIR%
Rem Moving the downloaded file from the folder Downloads to Desktop
move /Y "%file%" "%CCDIR%\">nul
Rem Open the desktop folder with explorer
Explorer "%CCDIR%\"
goto :eof
::--------------------------------------------
:Download <Url> <File>
Set url="%~1"
Set file=%2\%~nx1
certutil.exe -urlcache -split -f %url% %file%>nul
Rem Deleting cache
certutil -urlcache "%~1" delete>nul
Rem Check referenced urlcache is deleted
certutil.exe -v -urlcache -split "%~1">nul
exit /b
::--------------------------------------------

这篇关于使用启动Chrome从URL下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆