Air应用程序,使用FIleReference打开文件时获取完整路径
我正在使用 FileReference 打开文件,但只能获取用户选择的文件名,而不是完整路径。我可以获得完整的文件路径,还是存在安全问题?或者我应该使用另一种方法?
private function openClicked(e:MouseEvent):void {
var fr:FileReference = new FileReference();
fr.browse();
fr.addEventListener(Event.SELECT , fileSelected);
}
private function fileSelected(e:Event){
trace ("file sel " + e.target.name);
//do stuff
}
I'm using FileReference to open a file, but I can only get the file name that the user selected, not the full path. Can I get the complete file path, or is there a security issue? Or should I use another approach?
private function openClicked(e:MouseEvent):void {
var fr:FileReference = new FileReference();
fr.browse();
fr.addEventListener(Event.SELECT , fileSelected);
}
private function fileSelected(e:Event){
trace ("file sel " + e.target.name);
//do stuff
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FileReference 类不允许这样做。您需要改用 File 类。
The FileReference class does not allow that. You'll need to use the File class instead.