LoginSignup
2
3

More than 5 years have passed since last update.

PowerShellでディレクトリのファイル一覧とタイムスタンプを取得するワンライナー

Last updated at Posted at 2016-09-29

プロジェクトに中途参画して、いままでの経緯を追うために議事録を時系列で見たかった。

編集するならこっち⇒ PowerShellでディレクトリのファイル一覧とタイムスタンプを取得する

Get-ChildItem -recurse |
  Where-Object { ! $_.PsIsContainer } |
  Select-Object FullName, LastWriteTime |
  Export-Csv .\filelist.csv -Encoding Default

このあと ファイル構成テキスト化ツール なるものを見つけた。

2
3
3

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
2
3