Skip to content

Instantly share code, notes, and snippets.

@zaqmor
Created December 5, 2018 20:16
Show Gist options
  • Save zaqmor/3ad3d24d9ebbc5a8d2bd7463095339cd to your computer and use it in GitHub Desktop.
Save zaqmor/3ad3d24d9ebbc5a8d2bd7463095339cd to your computer and use it in GitHub Desktop.
Powershell: Is item a directory? or Is item a file?
function IsDir { (get-item $args) -Is [System.IO.DirectoryInfo] }
function IsFile { (get-item $args) -Is [System.IO.FileInfo] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment