在 Actionscript 中向数组添加本地文件名/引用

发布于 2024-08-23 07:44:17 字数 242 浏览 9 评论 0原文

我如何使用 Actionscript 3.0 循环遍历本地文件夹以在数组中添加所有(或部分)文件名和对该文件的引用?

var fileArray:Array = new Array();
for (var item:Object in "../myFolder/")
    {
    trace(item.name);
    fileArray.push(item);
    }

像这样的东西?

how can i cycle thru a local folder to add all (or some) files names and references to that file in an array using actionscript 3.0?

var fileArray:Array = new Array();
for (var item:Object in "../myFolder/")
    {
    trace(item.name);
    fileArray.push(item);
    }

something like this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独留℉清风醉 2024-08-30 07:44:19

您只能使用 AIR:/ 访问文件系统,或者让 Flex 对服务器端语言(如 ruby​​/python/php)进行 HTTP 调用并让它返回该信息。

以下是AIR 目录列表示例< /a> (由于格式原因,您必须调整博客代码块的大小)。

希望有帮助,

You can only access the file system using AIR :/, or by having Flex make an HTTP call to a server-side language like ruby/python/php and having it return that information.

Here is an AIR Directory Listing Example (you'll have to resize the blog's code blocks because of the formatting).

Hope that helps,
Lance

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文