com.github.akurilov.commons.io.file.FileIo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-commons Show documentation
Show all versions of java-commons Show documentation
Common functionality Java library
The newest version!
package com.github.akurilov.commons.io.file;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
public interface FileIo {
OpenOption[] INPUT_OPEN_OPTIONS = new OpenOption[] { StandardOpenOption.READ };
OpenOption[] OUTPUT_OPEN_OPTIONS = new OpenOption[] {
StandardOpenOption.APPEND,
StandardOpenOption.CREATE,
StandardOpenOption.WRITE
};
Path filePath();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy