原文可以查看这里:http://www.adobe.com/devnet/air/flex/articles/exploring_file_capabilities.html
一个是openWithDefaultApplication,即使用系统默认打开方式打开一个文件:
var presentation:File = File.documentsDirectory.resolvePath("d:/test.doc");
presentation.openWithDefaultApplication();
另一个是downloaded属性。主要是用于提示系统该文件已下载完毕,一边继续之后的操作,在Windows XP SP2以及之后的版本和mac系统中有用。