powershell在指定文件夹下创建多个文件夹(可以自己命名)
时间: 2024-09-07 11:04:47 浏览: 91
如何通过Powershell中的选定文件夹创建复选框
在PowerShell中,你可以使用`New-Item` cmdlet 来在指定的目录下创建新的子文件夹。这个命令允许你创建单个文件夹或者批量创建并命名多个文件夹。下面是一个基本的例子,假设你想在名为`ParentFolder`的根目录下创建三个分别命名为`Folder1`, `Folder2`, 和 `Folder3` 的新文件夹:
```powershell
$parentFolderPath = "C:\ParentFolder\" # 替换为你想要的文件夹路径
# 创建单个文件夹
$folder1 = New-Item -ItemType Directory -Path ($parentFolderPath + "Folder1")
$folder2 = New-Item -ItemType Directory -Path ($parentFolderPath + "Folder2")
$folder3 = New-Item -ItemType Directory -Path ($parentFolderPath + "Folder3")
# 或者批量创建多个文件夹
$foldersToCreate = @("Folder1", "Folder2", "Folder3")
foreach ($folder in $foldersToCreate) {
New-Item -ItemType Directory -Path ($parentFolderPath + "$folder")
}
阅读全文