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

Method isErrnoFileDoesNotExist

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

Source from the content-addressed store, hash-verified

313 }
314
315 public static boolean isErrnoFileDoesNotExist(int errno) {
316 return errno == CairoException.ERRNO_FILE_DOES_NOT_EXIST ||
317 (Os.isWindows() && errno == CairoException.ERRNO_FILE_DOES_NOT_EXIST_WIN);
318 }
319
320 public native static boolean isSoftLink(long lpszPath);
321

Callers 5

removeQuietMethod · 0.95
isErrnoFileCannotReadMethod · 0.95
copyFileMethod · 0.95
TableWriterMethod · 0.95
recursiveDeleteMethod · 0.95

Calls 1

isWindowsMethod · 0.95

Tested by

no test coverage detected