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.
c:\ フォルダー内の各 .xml ファイルをループし、そのファイルの日時スタンプをエコーする cmd ファイルを作成したいと考えています。
@echo off cd "C:\Folder" for %%A in (*.xml) do echo %%~nA %%~tA