utf 8 - Converting web app files to UTF-8 for Windows 8 Apps -
it seems same utf-8 error every time submit windows 8 app.
is there faster way convert batch of files utf-8 formatted?
you can use powershell script below convert files in directory utf-8.
$files = [io.directory]::getfiles("c:\temp\files") foreach($file in $files) { $content = get-content -path $file $content | out-file $file -encoding utf8 }
you should able run script above using powershell ise or follow instruction.
Comments
Post a Comment