MCPcopy Create free account
hub / github.com/questdb/questdb / isErrnoFileCannotRead

Method isErrnoFileCannotRead

core/src/main/java/io/questdb/std/Files.java:309–313  ·  view source on GitHub ↗
(int errno)

Source from the content-addressed store, hash-verified

307 }
308
309 public static boolean isErrnoFileCannotRead(int errno) {
310 return isErrnoFileDoesNotExist(errno)
311 || (Os.isWindows() && errno == CairoException.ERRNO_ACCESS_DENIED_WIN)
312 || (Os.isOSX() && errno == CairoException.ERRNO_FILE_READ_TIMEOUT_MACOS);
313 }
314
315 public static boolean isErrnoFileDoesNotExist(int errno) {
316 return errno == CairoException.ERRNO_FILE_DOES_NOT_EXIST ||

Callers 3

openROMethod · 0.95
openRONoCacheMethod · 0.95
isFileCannotReadMethod · 0.95

Calls 3

isWindowsMethod · 0.95
isOSXMethod · 0.95

Tested by

no test coverage detected