1. ホーム
  2. powershell

[解決済み] フォルダが空かどうかのPowershellテスト

2023-06-20 17:13:57

質問

Powershell で、ディレクトリが空であるかどうかをテストするにはどうすればよいですか。

どのように解決するのですか?

これを試してみてください...

$directoryInfo = Get-ChildItem C:\temp | Measure-Object
$directoryInfo.count #Returns the count of all of the objects in the directory

もし $directoryInfo.count -eq 0 であれば、ディレクトリは空です。