Button Button1 {
X = 86;
Y = 155;
Width = 193;
Height = 85;
Title = "ファイルの読込み&出力";
Function OnTouch( e ) {
var data;
var i = 0;
var fs = new FileSystem;
try{
var f = fs.openDialog("ファイルを開く","","","");
do{
/* openしたファイルから10バイト毎読込み */
data = f.ReadBinary(10);
if(data.length <= 0){
/* データを全て出力し終わったら終了 */
break;
}
/* 読込んだ10バイトのデータを出力 */
var fsi = new FileSystem;
var fi = fsi.Open(str(i) ,FileSystem.OPEN_WRITE);
fi.Write(data);
fi.Close();
/* ファイル番号のインクリメント */
i ++;
/* 全てのデータの読込み&出力が終了するまでループ */
}while(data.length > 0)
f.Close();
}catch(e){
//.MessageBox(e.Message);
return;
}
}
}
|