少个dll用不了,麻烦lz再上传下。- @echo off&setlocal&cls
- :bof
- set/p theFile=[拖动文件到此]
- if not exist %theFile% goto bof
- call :myEdit %theFile%
- goto bof
-
- :myEdit
- for /f "delims=" %%I in ("%~1") do set fPath=%%~dpI&&set type=%%~xI&&set fName=%%~nI
- cd.>events.txt
- rmevents -i "%~1" -e events.txt -o %fPath%OK%fName%.%type%
- del events.txt
- exit/b
复制代码
|