powershellでファイル分割する
powershellでファイル分割する
code:ファイル分割.ps1
(Get-Content -Path ファイル名).Length
$i=0; Get-Content TestFile.txt -ReadCount (分割したい行数) | % {$_ | Out-File "C:\temp\Split\TestFile_$i.txt" -Encoding UTF8 -Append; $i++}
ファイル分割はこれでいけるらしい(上のコマンドの元ネタ)