本帖最后由 pcl_test 于 2018-4-12 15:38 编辑
回复 6# chromatin2 - @echo off
- powershell ^
- dir . *.txt^|%%{^
- $txt = [IO.File]::ReadAllText($_.FullName, [Text.Encoding]::UTF8);^
- $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False;^
- [System.IO.File]::WriteAllText($_.FullName, $txt, $Utf8NoBomEncoding);^
- }
- pause
复制代码
|