gpt4 book ai didi

java.io.文件名过滤器

转载 作者:行者123 更新时间:2023-11-29 05:46:33 24 4
gpt4 key购买 nike

interface FilenameFilter {
boolean accept(File dir, String name);
}

据我所知,FileNameFilter 用于根据特定模式或扩展名选择文件。仅此“字符串名称”就足够了。为什么需要“文件目录”参数?有什么具体原因或用途吗?

最佳答案

dir对象是文件的父目录,name是文件名。


accept

public boolean accept(File dir,
String name)

检查文件是否应该被这个过滤器接受。

指定者:

在接口(interface) FilenameFilter 中接受

指定者:在接口(interface) IOFileFilter 中接受

参数:

dir - 要检查的目录文件

name - 要检查的目录中的文件名

返回:

如果此文件与测试匹配则为真


关于java.io.文件名过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15676627/

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