Windows Powershellにファイル一覧を表示する方法
1.ディレクトリ内のファイル一覧
PS C:\Users\cft>cd c:\
PS C:\>cd memo
PS C:\memo>get-childitem
2.特定の拡張子のファイル一覧
PS C:\site> get-childitem -path *.txt
Coding Changes the World
1.ディレクトリ内のファイル一覧
PS C:\Users\cft>cd c:\
PS C:\>cd memo
PS C:\memo>get-childitem
2.特定の拡張子のファイル一覧
PS C:\site> get-childitem -path *.txt