powershell创建一个目录
PowerShell是一个强大的脚本语言,在创建目录方面也提供了多种实现方法。以下是几种常见的方式:
方法1:使用New-Item命令
New-Item -ItemType Directory -Path "C:\path\to\directory"
方法2:使用mkdir别名
mkdir "C:\path\to\directory"
方法3:使用Set-Location命令和New-Item命令组合
Set-Location -Path "C:\path\to"
New-Item -ItemType Directory -Name "directory"
方法4:使用System.IO.Directory::CreateDirectory静态方法