本文介绍了Android:如何检测资产文件夹中的目录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  String [] files = assetFiles.list(EngagiaDroid); 

我们如何知道它是一个文件还是一个目录?

我想循环访问资产文件夹中的所有目录,然后复制其中的所有内容。

解决方案

您可以使用()。这是你的意思吗?


I'm retrieving files like this

String[] files = assetFiles.list("EngagiaDroid");

How can we know whether it is a file or is a directory?

I want to loop through the directories in the assets folder then copy all of its contents.

解决方案

You can check if a File represents a directory using http://developer.android.com/reference/java/io/File.html#isDirectory(). Is that what you mean?

这篇关于Android:如何检测资产文件夹中的目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 13:34