1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【powershell】特定のフォルダに格納されているファイル一覧を取得

Posted at

特定のフォルダに格納されているファイル一覧を取得

Get-ChildItem -Path C:filepath\* -Recurse -File |Select-Object  FullName,Name,LastWriteTime | Export-csv -Path .\filelist.csv -Encoding UTF8

ポイント1.ファイルを取得

Get-ChildItem -Path C:filepath\* -Recurse -File

パワーシェルでファイルを出力するときは

ポイント2.CSVで出力

Export-csv -Path .\filelist.csv -Encoding UTF8

出力をエクスポートする場合はExport‐CSVを使用します
日本語はCSVで文字化けが発生するのでEncoding UTF8は忘れずに

ポイント3.CSVの出力を制限

Select-Object  FullName,Name,LastWriteTime

ほしい情報だけ出力する場合は下記を実施

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?