RosettaCodeData/Task/Empty-directory/PowerShell/empty-directory.ps1

7 lines
106 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
$path = "C:\Users"
if((Dir $path).Count -eq 0) {
"$path is empty"
} else {
"$path is not empty"
}