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

Method mkdir

core/src/main/java/io/questdb/std/Files.java:346–348  ·  view source on GitHub ↗
(LPSZ path, int mode)

Source from the content-addressed store, hash-verified

344 public static native void madvise0(long address, long len, int advise);
345
346 public static int mkdir(LPSZ path, int mode) {
347 return mkdir(path.ptr(), mode);
348 }
349
350 public static int mkdirs(Path path, int mode) {
351 for (int i = 0, n = path.size(); i < n; i++) {

Callers 7

testCopyRecursiveMethod · 0.95
testHardLinkRecursiveMethod · 0.95
testPhantomPartitionMethod · 0.95
mkdirMethod · 0.95
mkdirsMethod · 0.95

Calls 1

ptrMethod · 0.65