在 Actionscript 中向数组添加本地文件名/引用
我如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能使用 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