gpt4 book ai didi

android - as3 air 获取设备上文件的特定路径

转载 作者:行者123 更新时间:2023-11-29 15:26:27 28 4
gpt4 key购买 nike

我正在使用 as3 air 并在 android 上进行测试。

我需要能够通过浏览功能加载 SD 卡或者我需要通过路径直接指向该文件夹。

我已经成功地从服务器下载了一个 zip 文件。我可以在测试时解压缩它我的桌面,因为我可以在桌面上浏览到正确的路径,但不能在手机上浏览。但我现在不需要浏览功能。我只需要能够指向 applicationStorgeDirectory 和其中的文件。 :)

我需要文件 var :)

var reader:ZipFileReader = new ZipFileReader();
reader.open(file); /// Help :)

2012 年 9 月 4 日下午 5 点更新


我试过这段代码:

var file:File = File.applicationStorageDirectory.resolvePath("myFile.zip");
trace(file.url); //path to the file
//assuming that function takes a string path
reader.open(file.url);

我得到了这个错误:

Scene 1, Layer 'Layer 1', Frame 1, Line 46
1067: Implicit coercion of a value of type String
to an unrelated type flash.filesystem:File.

最佳答案

这应该给你一个现有文件的 url

File url

你可以尝试这样的事情:

var file:File = File.applicationStorageDirectory.resolvePath("myFile.zip");
trace(file.url); //path to the file
//assuming that function takes a string path
reader.open(file.url);

关于android - as3 air 获取设备上文件的特定路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12272591/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com