gpt4 book ai didi

apache-flex - Flex、AIR : Search for . pdf 文件位于指定文件夹中

转载 作者:行者123 更新时间:2023-12-04 03:23:26 25 4
gpt4 key购买 nike

我需要 ActionScriot 代码来解析给定文件夹并在其中搜索 .txt 文件。任何链接或代码示例都会有所帮助。 (Adobe Flex 3.3/AIR)

谢谢,斯里兰卡

最佳答案

那里:

var docs:File = File.documentsDirectory;
var dirs:Array = docs.getDirectoryListing();
var pdfFiles:String = "";
for(var i:int; i < dirs.length; i++)
{
var f:File = dirs[i] as File;
if(f.isDirectory || f.name.toLowerCase().lastIndexOf(".pdf") != f.name.length - 4)
continue;

pdfFiles += f.name + "\n";
}
txt.text = pdfFiles;

关于apache-flex - Flex、AIR : Search for . pdf 文件位于指定文件夹中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1384950/

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