ฉันพยายามเขียนสคริปต์ PowerShell เพื่อสร้างโฟลเดอร์แล้วสร้างไฟล์ภายในโฟลเดอร์นั้น
$arr = @(
("First Folder",@("1", "2")),
("Sceond Folderr", @("1","2"))
)
for ($i=0; $i -lt $arr.length; $i++)
{
#New-Item -Path $arr[$i] -ItemType directory
for ($a=0; $a -lt $arr[$i].length; $a++)
{
$file=$arr[$a]
#New-Item -Path "$file.txt" -ItemType File
$file
}
}
นี่คือผลลัพธ์ที่ฉันได้รับ
First Folder
1
2
First Folder
1
2
Second Folder
1
2
Second Folder
1
2