Skip to content

Instantly share code, notes, and snippets.

@CN-CODEGOD
Created January 12, 2025 04:27
Show Gist options
  • Save CN-CODEGOD/d293c7a0ce16a395456d1923d08654a5 to your computer and use it in GitHub Desktop.
Save CN-CODEGOD/d293c7a0ce16a395456d1923d08654a5 to your computer and use it in GitHub Desktop.
powershell 判断路径是文件夹或文件
$param=$home
PS> (Get-Item $param -isnot [System.IO.DirectoryInfo])
false
PS> (Get-Item $param -is [System.IO.DirectoryInfo])
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment