如何安装测试命令行

时间:2014-03-06 12:26:10

标签: powershell makefile mingw

我正在尝试使用test命令,但它在我的系统中不存在(Windows 8)。

test -d $(build)

我该如何安装?

2 个答案:

答案 0 :(得分:1)

在PowerShell中,您可以使用Test-Path cmdlet检查文件夹是否存在:

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