本文整理了Java中org.eclipse.jgit.util.FileUtils.isHidden()
方法的一些代码示例,展示了FileUtils.isHidden()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtils.isHidden()
方法的具体详情如下:
包路径:org.eclipse.jgit.util.FileUtils
类名称:FileUtils
方法名:isHidden
暂无
代码示例来源:origin: org.eclipse.jgit/org.eclipse.jgit
/**
* Whether path is hidden, either starts with . on unix or has the hidden
* attribute in windows
*
* @param path
* a {@link java.io.File} object.
* @return true if path is hidden, either starts with . on unix or has the
* hidden attribute in windows
* @throws java.io.IOException
* @since 3.0
*/
public boolean isHidden(File path) throws IOException {
return FileUtils.isHidden(path);
}
代码示例来源:origin: sonia.jgit/org.eclipse.jgit
/**
* @param path
* @return true if path is hidden, either starts with . on unix or has the
* hidden attribute in windows
* @throws IOException
* @since 3.0
*/
public boolean isHidden(File path) throws IOException {
return FileUtils.isHidden(path);
}
代码示例来源:origin: berlam/github-bucket
/**
* Whether path is hidden, either starts with . on unix or has the hidden
* attribute in windows
*
* @param path
* a {@link java.io.File} object.
* @return true if path is hidden, either starts with . on unix or has the
* hidden attribute in windows
* @throws java.io.IOException
* @since 3.0
*/
public boolean isHidden(File path) throws IOException {
return FileUtils.isHidden(path);
}
代码示例来源:origin: sonia.jgit/org.eclipse.jgit
/**
* @param path
* @return {@code true} if the given path is hidden
* @throws IOException
* @deprecated Use {@link Files#isHidden(java.nio.file.Path)} instead
*/
@Deprecated
public static boolean isHidden(File path) throws IOException {
return FileUtils.isHidden(path);
}
内容来源于网络,如有侵权,请联系作者删除!