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.documentsDirectory
路径参数: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();

发表评论?

0 条评论。

发表评论


注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>