All pastes #2083831 Raw Edit

Mine

public php v1 · immutable
#2083831 ·published 2011-09-28 14:25 UTC
rendered paste body
Get-ChildItem -Path D:/test/"file converting" -Recurse -Include *.txt |ForEach-Object {  $inFileName = $_.DirectoryName + '\' + $_.name  $outFileName = $inFileName + "_UTF_8"  Write-Host "windows-1251 to UTF-8: " $inFileName -> $outFileName    E:\bin\iconv\iconv.exe -f CP1251 -t UTF-8 $inFileName > $outFileName}