Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎每次提交 Windows 8 应用程序时都会收到相同的 UTF-8 错误。
有没有更快的方法将一批文件转换为 UTF-8 格式?
您可以使用下面的 PowerShell 脚本将目录中的所有文件转换为 UTF-8。
$files = [IO.Directory]::GetFiles("C:\temp\files") foreach($file in $files) { $content = get-content -path $file $content | out-file $file -encoding utf8 }
您应该能够使用 PowerShell ISE 或按照此说明运行上述脚本。