2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerShellでエンコードを一括で変更

Posted at

powarshell shiftjisで開いてutf8へ変更するコマンド

カレントフォルダがrootになり、変更する拡張子を指定する

バックアップはとってね。意図せず変換されることもあるから
バックアップはとってね。意図せず変換されることもあるから
バックアップはとってね。意図せず変換されることもあるから

ファイルを開いてBOMなしのutf8で保存しなおしている。

# カレントディレクトリを変換するファイルがあるディレクトリのパスとする
$SourcePath = "."
# 変換するファイルのパターンを.csに設定
$FilePattern = "*.cs"

# BOMなしのUTF8エンコーディングを指定
$utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False

Get-ChildItem -Path $SourcePath -Recurse -Filter $FilePattern | ForEach-Object {
    # Shift-JISでエンコーディングされたファイル内容を読み込む
    $content = Get-Content $_.FullName -Encoding Default
    # 読み込んだ内容をBOMなしのUTF-8で再保存する
    [System.IO.File]::WriteAllLines($_.FullName, $content, $utf8NoBomEncoding)
}

これでUnity上の文字化けがなくなる(shift jisだと文字化けする)
image.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?