/* 一番新しいコアダンプを取得 */
var cdfile = getCoreDump();
/* コアダンプをRootディレクトリに保存
※iOS版のShellOpenメソッドはRootディレクトリのファイルのみ開ける */
var fs = new FileSystem();
var f = fs.Open("/sample.core", FileSystem.OPEN_WRITE);
f.Write(cdfile.readBinary(-1));
f.Close();
/* ShellOpenで開く */
var rt = new Runtime();
rt.ShellOpen("/sample.core");
|