0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Windowsコマンド]ファイルリスト出力コマンド

Last updated at Posted at 2024-04-06

[Windowsコマンド]ファイルリスト出力コマンド

ファイルリストを出力したいディレクトリで以下コマンドを実行する

forfiles /s /c "cmd /c echo @path @fdate @ftime" > ../filelist.out

出力したい情報に応じて以下を設定

/C "コマンド" 各ファイルに対して実行するコマンドを指定する
 @file:ファイル名(例:test.txt)
 @fname:拡張子なしのファイル名(例:test)
 @ext:ファイルの拡張子のみ(例:txt、exeなど)
 @path:ファイルのフルパス(例:C:\temp\test.txt)
 @relpath:ファイルの相対パス(例:.\test.txt)
 @isdir:ファイルの種類 (ディレクトリの場合は"TRUE"、ファイルの場合は"FALSE")
 @fsize:ファイルサイズ(バイト単位)
 @fdate:ファイルの最終更新日
 @ftime:ファイルの最終更新時刻

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?