PowerShell 技能连载 - 检测文件或文件夹

Test-Path 可以检测一个文件或文件夹是否存在。如果您添加了 -PathType 来指定叶子节点(文件),或 -Container(文件夹),结果会更具体:

$path = 'c:\windows'

Test-Path -Path $path
Test-Path -Path $path -PathType Leaf
Test-Path -Path $path -PathType Container

PowerShell 技能连载 - 检测文件或文件夹

http://blog.vichamp.com/2016/12/20/test-for-file-or-folder/

作者

吴波

发布于

2016-12-20

更新于

2022-07-06

许可协议

评论