-
-
Methods in one.microstream.io that throw IORuntimeException
Modifier and Type |
Method |
Description |
static <C extends Closeable> C |
XIO.unchecked.close(C closable) |
|
static <C extends Closeable> C |
XIO.unchecked.close(C closable,
Throwable suppressed) |
|
static boolean |
XIO.unchecked.delete(Path path) |
|
static <P extends Path> P |
XIO.unchecked.ensureDirectory(P directory) |
|
static <P extends Path> P |
XIO.unchecked.ensureDirectoryAndFile(P file) |
|
static <P extends Path> P |
XIO.unchecked.ensureFile(P file) |
|
static <P extends Path> P |
XIO.unchecked.ensureWriteableFile(P file) |
|
static boolean |
XIO.unchecked.exists(Path path) |
|
static boolean |
XIO.unchecked.hasNoFiles(Path directory) |
|
static boolean |
XIO.unchecked.isDirectory(Path path) |
|
static <C extends Consumer<? super Path>> C |
XIO.unchecked.iterateEntries(Path directory,
C logic) |
Warning: this (because of using Files.newDirectoryStream) does some weird file opening/locking stuff.
|
static <C extends Consumer<? super Path>> C |
XIO.unchecked.iterateEntries(Path directory,
C logic,
Predicate<? super Path> selector) |
Warning: this (because of using Files.newDirectoryStream) does some weird file opening/locking stuff.
|
static long |
XIO.unchecked.lastModified(Path file) |
|
static Path[] |
XIO.unchecked.listEntries(Path directory) |
|
static <C extends Consumer<? super Path>> C |
XIO.unchecked.listEntries(Path directory,
C target) |
|
static <C extends Consumer<? super Path>> C |
XIO.unchecked.listEntries(Path directory,
C target,
Predicate<? super Path> selector) |
|
static Path[] |
XIO.unchecked.listEntries(Path directory,
Predicate<? super Path> selector) |
|
static void |
XIO.unchecked.move(Path sourceFile,
Path targetFile) |
|
static long |
XIO.unchecked.size(FileChannel fileChannel) |
|
static long |
XIO.unchecked.size(Path file) |
|
static void |
XIO.unchecked(IoOperation operation) |
|
static <T> T |
XIO.unchecked(IoOperationR<T> operation) |
|
static <S> void |
XIO.unchecked(IoOperationS<S> operation,
S subject) |
|
static <S,
R> R |
XIO.unchecked(IoOperationSR<S,R> operation,
S subject) |
|