Powershell 合并文件

Powershell 合并文件,第1张

在Powershell群里?有群友问过这碧弊个问题:

$filepath = "E:\FormateFile"

$DestFile = "E:\FormateFile\comb.txt"

if (Test-Path $DestFile){

    Remove-Item $DestFile -Force -Confirm:$false

}

Get-ChildItem -Path $filepath -Include *.txt | ForEach-Object {

    $fname = $_.Name

    $content = Get-Content $fname

   圆埋 for ($i = 1 $i -lt $content.Length-1 $i++) {

        Add-Content -Path 橘慧蚂$DestFile -Value "$fname,$content[$i]"

    }

}

$test=gc "1.txt"

$test+=gc "2.txt"

$test+=gc "绝裤3.txt"和宴

$test|Export-Csv "new.csv" -notype -Encoding oem

这是简单的合并和转csv例子。你的需并棚简求不够详细。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12241964.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存