标签: powershell makefile mingw
我正在尝试使用test命令,但它在我的系统中不存在(Windows 8)。
test
test -d $(build)
我该如何安装?
答案 0 :(得分:1)
在PowerShell中,您可以使用Test-Path cmdlet检查文件夹是否存在:
Test-Path
Test-Path -PathType Container -LiteralPath 'C:\some\folder'
答案 1 :(得分:0)
@echo off IF exist myDirName ( echo myDirName exists ) ELSE ( mkdir myDirName && echo myDirName created)
来源=> Here