如果我尝试打开放置在空中app文件夹中的文件,我只会收到“错误#3000:非法路径名称”。如果文件位于app-folder之外的其他位置,则可以使用。
private var file:File = File.documentsDirectory;
public function download():void{
var pdfFilter:FileFilter = new FileFilter("PDF Files", "*.pdf");
file.browseForOpen("Open", [pdfFilter]);
file.addEventListener(Event.SELECT, fileSelected);
}
private function fileSelected(e:Event):void
{
var destination:File = File.applicationDirectory
destination = destination.resolvePath("test.pdf");
/*
//This works, also if the file to copy is placed inside the appfolder
file.copyTo(destination, true);
*/
/*This Throws me an Error #3000, but ONLY if the file is located in
the App folder*/
file.openWithDefaultApplication();
}
当我尝试获取相同的文件并将其复制到另一个地方时,它正常。
为什么?如果我想打开appfolder中的文件,可以做些什么特别的事情? 它也不能在调试模式下工作 - bin-debug。
问候,Temo
答案 0 :(得分:12)
在阅读文档几次后,我发现这是不可能的(这不是一个错误,它是一个功能!?!)
Opening files with the default system application
您不能将openWithDefaultApplication()方法与位于应用程序目录中的文件一起使用。
所以我这样做了:
file.copyTo(tempFile);
tempFile.openWithDefaultApplication();
不太好,但确实有效。