Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个 cmd 文件来循环遍历 c:\ 文件夹中的每个 .xml 文件并回显该文件的日期时间戳。
@echo off REM Next 命令打开 Microsoft Word start /d "C:\Program Files\Microsoft Word" WINWOR
@echo off cd "C:\Folder" for %%A in (*.xml) do echo %%~nA %%~tA