Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90%e5%b7%a5%e5%85%b7%e3%80%91%e8%87%aa%e5%8a%a8%e8%a7%a3%e5%8e%8b%e7%9b%ae%e5%bd%95%e5%8f%8a%e5%ad%90%e7%9b%ae%e5%bd%95%e4%b8%8b%e6%89%80%e6%9c%89%e5%8e%8b%e7%bc%a9%e6%96%87%e4%bb%b6%e7%9a%84.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 703

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90%e5%b7%a5%e5%85%b7%e3%80%91%e8%87%aa%e5%8a%a8%e8%a7%a3%e5%8e%8b%e7%9b%ae%e5%bd%95%e5%8f%8a%e5%ad%90%e7%9b%ae%e5%bd%95%e4%b8%8b%e6%89%80%e6%9c%89%e5%8e%8b%e7%bc%a9%e6%96%87%e4%bb%b6%e7%9a%84.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 706

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-includes/theme-compat/single-post-%e3%80%90%e5%b7%a5%e5%85%b7%e3%80%91%e8%87%aa%e5%8a%a8%e8%a7%a3%e5%8e%8b%e7%9b%ae%e5%bd%95%e5%8f%8a%e5%ad%90%e7%9b%ae%e5%bd%95%e4%b8%8b%e6%89%80%e6%9c%89%e5%8e%8b%e7%bc%a9%e6%96%87%e4%bb%b6%e7%9a%84.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 709
【工具bar】自动解压目录及子目录下所有压缩文件的批处理 | 越努力越快乐

【工具bar】自动解压目录及子目录下所有压缩文件的批处理

gengboxb 4.1K 2

新建bar文件,默认放在需要解压的文件夹里运行,或者修改源文件srcdir指定路径

@echo off
::假定winrar软件安装于c盘默认目录下,如自定义目录安装,请修改该行
set rar="c:\Program Files\WinRAR\WinRAR.exe"

::默认对当前批处理文件所在文件夹及子文件夹操作,也可以自定义文件夹根目录
set srcdir="."
::set srcdir="G:\总下载\3.JavaWeb\28.Maven基础"

::(*.zip)指定要解压的文件格式
for /r %srcdir% %%i in (*.zip) do %rar% x -y "%%i" "%%~dpi" && del "%%i">nul

发表评论 取消回复
表情 图片 链接 代码

  1. 11
    11 Lv 1

    好用,bandzip也可以使用这个批处理。还有,好像是bat?

    • gengboxb
      gengboxb 站长

      @11是的,创建一个bat文件。

分享