AIR 文件存储路径三种选择

AIR 文件存储路径三种选择

1.File.desktopDirectory

路径参数:C:\Documents and Settings\当前用户名\桌面\

file = File.desktopDirectory.resolvePath("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();

2.File.applicationStorageDirectory

路径参数:C:\Documents and Settings\当前用户名\Application Data\应用程序项目名\Local Store\

var file:File = File.applicationStorageDirectory.resolvePath("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();

 

3.File.applicationStorageDirectory

路径参数:C:\Documents and Settings\当前用户名\My Documents\

var file:File = File.documentsDirectory.resolvePath("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();

posted @ 2009-07-01 00:13  zhych  阅读(703)  评论(0编辑  收藏  举报