Powershell 读写文件(Get-Content、Set-Content):如何使用?

Powershell 读写文件(Get-Content、Set-Content):如何使用?

当我将文件读入变量时

$file = Get-Content myfile.utf8

然后将相同的内容写入新文件

Set-Content -Encoding utf8 mynewfile.txt $file

Powershell 会自动在文件末尾添加回车和换行符。

如何在不添加任何 Powershell 的情况下获取文件内容并将其写回?

答案1

这是一个解决方法地点

使用

[System.IO.File]::WriteAllText($path, $text)

相关内容