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/11732221.html

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

发表评论

登录后才能评论

评论列表(0条)

保存