我目前正在使用此代码:
private function getFile(file:String):void
{
var openFile:URLRequest = new URLRequest("file:///sdcard/GNs/"+file);
try {navigateToURL(openFile);}
catch(e:Error)
{
var download:URLRequest = new URLRequest("http://"+file);
new DLAlert().open(this, true);
}
}
查找文件,如果不存在则为可选下载提供弹出窗口。问题是,尝试navigateToURL(...)
命令时返回的错误由Web /文件浏览器处理,而不是由应用程序处理。有没有办法在不试图打开它的情况下寻找它?
答案 0 :(得分:3)
使用此:
var myfile:File = new File("/sdcard/GNs/"+file);
if (myfile.exists)
{
// your code here
}
else
{
// your code here
}