本帖最后由 yyz219 于 2022-1-22 11:13 编辑
- 解决了:
-
- ::【大概需要3、4秒】
- @echo off
- powershell -c "(New-Object -ComObject 'Shell.Application').Windows() | foreach{ $_.LocationURL }">123.txt
- ::【检测 “关键字”:file】
- findstr ""file"" "123.txt" >nul 2>&1
-
- if errorlevel 1 goto :C %【无就跳到 :C】%
- if errorlevel 0 goto :D %【有就跳到 :D】%
- :C
- del 123.txt
- echo 无
- pause >nul
- exit
- :D
- del 123.txt
- echo 有
- pause >nul
- exit
复制代码
|