我一生都无法正常工作。发生了什么事,我正在将.vbs文件作为辅助文件写入%temp%文件夹。然后我打电话给它。除了一个单独的“)”字符没有保留以外,其他所有操作都可以正常工作。
set "path=\\server1\folder\folder\folder\dest-folder"
set source=^"%path%\nwm*.zip^"
set destination=%path%
setlocal
for /f "tokens=* delims=" %%a in ('dir/b "%destination%\nwm*.zip"') do (
set source=%%a
:unzip
>> %temp%\unzip.vbs echo ^'test
>> %temp%\unzip.vbs echo call WindowsUunzip(%source%,"%destination%")
>> %temp%\unzip.vbs echo Function WindowsUunzip(sUunzipFileName, sUunzipDestination)
C:\windows\system32\cscript //nologo %temp%\unzip.vbs
pause
if exist "%temp%\unzip.vbs" del /f /q "%temp%\unzip.vbs"
endlocal
)
这是我得到的结果:
'test
call WindowsUunzip("\\server1\folder\folder\folder\dest-folder\nwm*.zip","\\server1\folder\folder\folder\dest-folder"
Function WindowsUunzip(sUunzipFileName, sUunzipDestination)
这是我想在结尾的第一行看到(A“)”符号的结果。)
'test
call WindowsUunzip("\\server1\folder\folder\folder\dest-folder\nwm*.zip","\\server1\folder\folder\folder\dest-folder")
Function WindowsUunzip(sUunzipFileName, sUunzipDestination)
到目前为止我尝试过的:
答案 0 :(得分:0)
set "Xpath=\\server1\folder\folder\folder\dest-folder"
set source=^"%Xpath%\nwm*.zip^"
set destination=%Xpath%
setlocal
for /f "tokens=* delims=" %%a in ('dir/b "%destination%\nwm*.zip"') do (
>> %temp%\unzip.vbs echo ^'test
>> %temp%\unzip.vbs echo call WindowsUunzip(%%a,"%destination%"^)
>> %temp%\unzip.vbs echo Function WindowsUunzip(sUunzipFileName, sUunzipDestination^)
C:\windows\system32\cscript //nologo %temp%\unzip.vbs
pause
if exist "%temp%\unzip.vbs" del /f /q "%temp%\unzip.vbs"
)
endlocal
PATH 是Windows搜索的目录序列,以查找在当前目录中找不到的可执行文件。您要自己承担风险。
您是否知道set
命令之前的值setlocal
永久set
进入此会话的环境?
在您的source
目录扫描中检查destination
而不是for /f
是更正常的情况。
几乎可以肯定在for
循环中使用标签会带来麻烦。我怀疑您在goto unzip
循环中检查了一个重要的for
语句(在生成最小的脚本时是可以接受的)(您无法goto
在{{1} }循环。)
,并且您的for
应该在endlocal
循环的外部内,否则对于调用的每个循环值都会被提取。
最后,您知道吗
for
(请注意单个> %temp%\unzip.vbs echo ^'test
)将启动一个新文件>
,替换任何现有版本吗?这可以为您节省门控删除操作(但是,%temp%\unzip.vbs
循环关闭后,[如果需要,您需要删除文件)
答案 1 :(得分:0)
以下是我认为您要尝试的操作batch-file:
<!-- :
@Echo Off
Set "destination=\\server1\folder\folder\folder\dest-folder"
Set "file-mask=nwm*.zip"
For /F "Delims=" %%A In ('Where "%destination%":"%file-mask%"'
)Do CScript //NoLogo "%~f0?.wsf" "%%A" "%destination%"
Exit /B
-->
<Job><Script Language="VBScript">
Unzip WScript.Arguments(0), WScript.Arguments(1)
Sub Unzip(sSource, sTargetDir)
Set oFSO = CreateObject("Scripting.FileSystemObject")
If Not oFSO.FolderExists(sTargetDir) Then oFSO.CreateFolder(sTargetDir)
Set oShell = CreateObject("Shell.Application")
Set oSource = oShell.NameSpace(sSource).Items()
Set oTarget = oShell.NameSpace(sTargetDir)
oTarget.CopyHere oSource, 256
End Sub
</Script></Job>
您显然可以调整VBScript
代码以适合您的确切目的,但这应该为您提供一种方法。