如何将文件中的行匹配到单个文件输出位置

时间:2019-06-14 19:38:31

标签: powershell

我的输入数据在一个文件中

location1
location2
location3

我在现有文件夹中创建了一些空文件,例如1.txt 2.txt 2.txt

我的输出应该是

  • location1应该附加到1.txt
  • location2应该附加到2.txt
  • location3应该附加到3.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
    }
}

0 个答案:

没有答案