gpt4 book ai didi

windows - 如何在使用 WinRAR 创建多个 ZIP 压缩文件时显示丢失文件列表和其他错误?

转载 作者:可可西里 更新时间:2023-11-01 11:49:23 26 4
gpt4 key购买 nike

我创建了这个批处理文件来创建基于文本文件的 ZIP 文件:

@echo off

set path="C:\Program Files\WinRAR\";%path%

for /f "tokens=1* delims=;" %%a in (list.txt) do (
WinRAR a -afzip "%%a" %%b
pause
cls
)

文件 list.txt 如下所示:

file1.zip;fileA.pdf fileB.pdf fileC.pdf
file2.zip;fileA.pdf fileB.pdf fileC.pdf fileD.pdf
file3.zip;fileB.pdf fileD.pdf
file4.zip;fileA.pdf fileC.pdf fileE.pdf
file5.zip;file*.pdf

如你所见:

  • %%a 是要创建的 ZIP 文件的名称,例如:file1.zip
  • %%b 是要添加到 ZIP 文件的文件列表,例如:fileA.pdf fileB.pdf fileC.pdf for file1.zip

它工作得很好,但我想知道是否有可能为每个创建的 ZIP 文件显示它无法找到(因此没有添加到 ZIP 文件)的文件。

有什么想法吗?

编辑:如@Mofi 所述,Rar 不能用于创建 ZIP 文件。所以我改变了

    rar a -r -m5 "%%a" %%b

    WinRAR a -afzip "%%a" %%b

最佳答案

控制台版本 Rar不支持 ZIP 格式,因为它可以在文本文件中读取 %ProgramFiles%\WinRAR\Rar.txt这是控制台版本的手册。只有 GUI 版本 WinRAR支持创建和提取 ZIP 文件。

在使用 WinRAR 时不需要单独测试所有要归档的文件是否存在,因为这个注释批处理代码演示了:

@echo off
rem Define name of error log file in directory for temporary files with name
rem of batch file, an underscore, a random number and file extension TMP.
set "ErrorLog=%TEMP%\%~n0_%RANDOM%.tmp"

rem Delete error log file if already existing from a previous run of this
rem batch file broke by the user while running and having randomly the
rem same number.
if exist "%ErrorLog%" del "%ErrorLog%"

rem For each ZIP file run WinRAR with ignoring default configuration (-cfg-)
rem using best compression (-m5), running in background (-ibck = minimized
rem to system tray), writing error messages into a log file (-ilog) and
rem suppressing displaying the errors in a GUI window (-inul).

rem If WinRAR really output any error into the log file, clear screen, output
rem on which ZIP file the error(s) occurred, output the logged error messages,
rem delete the error log file, and hold batch processing until user presses
rem any key to continue.

for /f "tokens=1* delims=;" %%a in (list.txt) do (
"%ProgramFiles%\WinRAR\WinRAR.exe" a -afzip -cfg- -m5 -ibck "-ilog%ErrorLog%" -inul -- "%%~a" %%b
if exist "%ErrorLog%" (
cls
echo Errors output by WinRAR on creating %%a:
echo.
type "%ErrorLog%"
del "%ErrorLog%"
echo.
echo.
pause
)
)

rem Delete the environment variable for error log file name with path.
set "ErrorLog="

有关使用的 WinRAR 开关的更多详细信息

  • 启动WinRAR
  • 点击帮助菜单中的帮助主题
  • Contents 选项卡上打开 Command line mode 项,
  • 打开项目开关
  • 单击上面批处理代码中使用的开关(选项/参数)。

重要的是不要使用 -r开关(递归),因为这意味着对于 WinRAR 压缩文件名称后的参数可以是文件或目录。

WinRAR v5.21 不报告压缩时不存在的目录,只报告因根本不存在或当前用户没有读取权限(NTFS 分区)而无法打开读取的文件,或其他正在运行的进程对文件设置的读/写锁定等。操作系统返回的文件打开错误的原因也由 WinRAR 除了文件打开失败的错误消息外输出。

WinRAR 期望没有 -r存档文件名后的每个参数都是文件名(带或不带路径),因此如果无法打开文件读取数据,则输出错误消息。

但该参数也可以是使用开关-r 时不存在的目录名WinRAR 不会将其报告为错误。

如果列表文件中的一个或多个文件包含 1 个或多个空格或这些字符之一

&()[]{}^=;!'+,`~

在文件名中需要在列表文件中引用该文件名。

例子:

"file 1.zip";"file A.pdf" fileB.pdf "file C.pdf"
file 2.zip;"file A.pdf" fileB.pdf "file C.pdf" fileD.pdf
file3.zip;fileB.pdf fileD.pdf
file4.zip;"fileA.pdf" fileC.pdf fileE.pdf
file5.zip;file*.pdf
file6.zip;file*.pdf readme.txt

由于使用"%%~a",存档文件名也可以不带引号在命令行调用 WinRAR

最后两行表明也可以使用具有 1 个或多个通配符的文件名模式。但是报错信息No files to add仅当由于根本找不到要添加的文件而无法创建 ZIP 文件时,才会由 WinRAR 输出。因此,如果没有 file*.pdf,第 5 行会产生一条错误消息。 ,但如果至少 readme.txt,第 6 行不会产生错误消息存在并可以添加到存档文件中。

WinRAR 还设置了 errorlevelWinRAR 的帮助下,根据 WinRAR 退出代码列表 页面退出。但是,如果在任何情况下都输出错误消息,则评估批处理文件中的退出代码没有多大意义。错误日志文件仅在发生任何错误时由 WinRAR 创建。

最后但同样重要的是,也可以使用开关 -log将添加到存档中的文件名写入日志文件,并使用 type 输出这些列表和 more在控制台窗口中。有关开关 -log 的详细信息,请参阅 WinRAR 的帮助.

要了解使用的控制台命令及其工作原理,请打开命令提示符窗口,在其中执行以下命令,并仔细阅读为每个命令显示的所有帮助页面。

  • cls /?
  • del /?
  • echo /?
  • for /?
  • if /?
  • pause /?
  • rem /?
  • set /?
  • type /?

关于windows - 如何在使用 WinRAR 创建多个 ZIP 压缩文件时显示丢失文件列表和其他错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33944403/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com