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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -