有谁知道我如何删除文本文件末尾的回车???
我创建了一个将结果导出到文本文件的 SSIS 包。但是,在每个需要删除的文本文件的末尾都有一个回车。
以下是您的案例的 Powershell 脚本。只需提供放置所有文本文件的文件夹路径(在脚本中提到)。复制以下代码并将其保存为 .ps1 并使用 powershell 运行。
function RemoveLastLine{
param($folderpath)
$filelist=Get-ChildItem $folderpath
foreach($file in $filelist){
$content=Get-Content $file
$count=$content.count-2
Set-Content $file $a[0 .. $count]
}
}
#provide folder path where all text files are placed
$folderpath="<source folder path>"
#calling the function
RemoveLastLine $folderpath
谢谢