1. 程式人生 > >flash Air 在同一個目錄下面創建txt,寫入字

flash Air 在同一個目錄下面創建txt,寫入字

color tor close con hello world string clas 一個

import flash.filesystem.*;
 
var file:File=new File(File.applicationDirectory.nativePath + ‘/HelloWorld.txt‘);
var stream:FileStream = new FileStream()
stream.open(file, FileMode.WRITE);
var str:String = "Congratulations on AIR Save Path";
stream.writeUTFBytes(str);
stream.close();

flash Air 在同一個目錄下面創建txt,寫入字