我的输入数据在一个文件中
location1
location2
location3
我在现有文件夹中创建了一些空文件,例如1.txt 2.txt 2.txt
我的输出应该是
$source=Get-Content -Path "E:\videofiles\filename.txt"
$files = Get-ChildItem -Path E:\videofiles\*.avsi
foreach ($data in $source)
{
for ($i=1; $i -lt $files.Count; $i++) # enter code here
{
$outfile= $files[$i].FullName
$outfile
$data #enter code here
}
}