如何从Android中的文件夹和子文件夹中选取所有文件?
可能的重复:
在Java中递归列出文件
我在SD卡中创建了一个名为SlideShow的文件夹 在这个文件夹中,我创建了两个文件夹,即folder1和folder2。这两个文件夹进一步分为两个子文件夹。我正在将图库中的一些图像保存到这些子文件夹中。
有人建议我如何列出 SlideShow 文件夹中的所有图像,包括文件夹和子文件夹?
Possible Duplicate:
Recursively list files in Java
I have created one folder named SlideShow in sdcard. Inside this folder i created two folders namely folder1 and folder2. These two folders further divided into two subfolders each. I am saving some images from gallery into these subfolders.
Anyone suggest me how to list all the images from the SlideShow folder including the folders and subfolders ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以使用这样的递归函数:您可以通过
图像列表中的此示例寻求帮助,您拥有所有图像。
I think that you can use recrusive function like this: you can take help through this example
in images list you have your all images.
尝试使用以下代码获取 SlideShow 文件夹及其子文件夹中的所有图像
Try with the following code to get all images from SlideShow folder and its sub folder