阅读背景:

java 判断某个文件列表中是否有FileName文件夹

来源:互联网 
//判断某个文件列表中是否有FileName文件夹
	private static boolean DetermineIfThereIsSomeFile(File[] children, String FileName) {
		for (File file : children) {
			if(file.getName().equals(FileName)) {
				return true;
			};
		}
		return false;
	}//判断某个文件列表中是否有FileName文件夹
	private sta



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: