本文整理了Java中com.thoughtworks.go.util.FileUtil.isDirectoryReadable()
方法的一些代码示例,展示了FileUtil.isDirectoryReadable()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.isDirectoryReadable()
方法的具体详情如下:
包路径:com.thoughtworks.go.util.FileUtil
类名称:FileUtil
方法名:isDirectoryReadable
暂无
代码示例来源:origin: gocd/gocd
@Override
protected boolean handleDirectory(File directory, int depth, Collection results) {
if (FileUtil.isHidden(directory)) {
return false;
}
if (!FileUtil.isDirectoryReadable(directory)) {
String message = String.format("Failed to access command repository directory: %s.", directory.getPath());
serverHealthService.update(ServerHealthState.warning("Command Repository", message, HealthStateType.commandRepositoryAccessibilityIssue(), systemEnvironment.getCommandRepoWarningTimeout()));
LOGGER.warn(message);
return false;
}
return true;
}
代码示例来源:origin: gocd/gocd
@Test
public void shouldReturnTrueIfDirectoryIsReadable() throws IOException {
File readableDirectory = mock(File.class);
when(readableDirectory.canRead()).thenReturn(true);
when(readableDirectory.canExecute()).thenReturn(true);
when(readableDirectory.listFiles()).thenReturn(new File[]{});
assertThat(FileUtil.isDirectoryReadable(readableDirectory), is(true));
File unreadableDirectory = mock(File.class);
when(readableDirectory.canRead()).thenReturn(false);
when(readableDirectory.canExecute()).thenReturn(false);
assertThat(FileUtil.isDirectoryReadable(unreadableDirectory), is(false));
verify(readableDirectory).canRead();
verify(readableDirectory).canExecute();
verify(readableDirectory).listFiles();
verify(unreadableDirectory).canRead();
verify(unreadableDirectory, never()).canExecute();
}
内容来源于网络,如有侵权,请联系作者删除!