PowerShell 技能连载 - (分别)测试文件和文件夹
Test-Path
在测试一个文件或文件夹是否存在时十分有用,它可以用在任何 PowerShell 驱动器上。所以它也可以测试一个变量、一个函数,或一个证书是否存在(举个例子)。
In recent PowerShell versions, Test-Path can now differentiate between containers (i.e. folders) and leafs (i.e. files), too:
在近期的 PowerShell 版本中,Test-Path
还可以区分容器(例如文件夹)和叶子(例如文件):
1 | $path = 'c:\windows\explorer.exe' |
PowerShell 技能连载 - (分别)测试文件和文件夹
http://blog.vichamp.com/2016/11/04/testing-files-and-folders-separately/