我正在尝试从路径中复制文件,如下所示
D:\XXX\XXX\SXX_FX.zip\ADMIN
使用代码......
@echo off
Rem This is for copy down all the files in the directory
set origin=D:\NXG\Backup_Prod\SGL_FINANCE\WebFolder\SGL_FINANCE.zip\ADMINAPP
set drive=D:\TEST3
set d1=%date:~4,2%
set d2=%date:~7,2%
set d3=%date:~10,4%
XCOPY "%origin%" "%drive%_%d1%%d2%%d3%.zip*" /s /Y
echo "The program has completed"
但我收到错误消息。 File not found - ADMIN
。
是因为我试图在复制时打开压缩文件。
请您详细了解如何动态解压缩该文件夹。
答案 0 :(得分:0)
使用7zip 从“ Archive.zip ”获取“ file.txt ”到“目标\文件夹”
"C:\Program Files\7-Zip\7z.exe" e -ir!file.txt "C:\Path\To\Archive.zip" -o"C:\Path\to\Destination\Folder\"