[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
12051bytes
一度に読み込めるFileReadString は、上記バイト数が限界のようです。
PG素人にはつらい仕様だ。
なので、ループでの切り出しが必要です。
int hand=0;
string swb="";
hand=FileOpen("test.txt",FILE_BIN|FILE_WRITE);
while(!FileIsEnding(hand)){
FileSeek(hand_t,0,SEEK_END);
swb=swb+FileReadString(hand,10000);
}
こんなんで達成。