List of usage examples for java.io FileSystem interface-usage
From source file org.gradle.os.GenericFileSystem.java
class GenericFileSystem implements FileSystem { private static final Logger LOGGER = LoggerFactory.getLogger(GenericFileSystem.class); final boolean caseSensitive; final boolean canCreateSymbolicLink;
From source file net.sourceforge.vulcan.core.support.FileSystemImpl.java
public class FileSystemImpl implements FileSystem { public void cleanDirectory(File directory, IOFileFilter excludeFilter) throws IOException { if (!directory.exists() || !directory.isDirectory()) { throw new IOException("Not a directory"); }
From source file org.gradle.internal.nativeplatform.filesystem.GenericFileSystem.java
class GenericFileSystem implements FileSystem { private static final Logger LOGGER = LoggerFactory.getLogger(GenericFileSystem.class); final boolean caseSensitive; final boolean canCreateSymbolicLink;
From source file com.frostwire.platform.DefaultFileSystem.java
/** * @author gubatron * @author aldenml */ public class DefaultFileSystem implements FileSystem {
From source file org.dkf.jed2k.android.DefaultFileSystem.java
/** * @author gubatron * @author aldenml */ public class DefaultFileSystem implements FileSystem {
From source file org.ballerinalang.composer.service.fs.LocalFileSystem.java
/** * Represents local file system operations. */ public class LocalFileSystem implements FileSystem { private static final Logger logger = LoggerFactory.getLogger(LocalFileSystem.class);
From source file de.micromata.genome.gdbfs.AbstractFileSystem.java
/**
* Base implementation methods for a FileSystem.
*
* @author Roger Rene Kommer (r.kommer@micromata.de)
*
*/
From source file org.sonar.application.AppFileSystem.java
public class AppFileSystem implements FileSystem { private static final Logger LOG = LoggerFactory.getLogger(AppFileSystem.class); private static final EnumSet<FileVisitOption> FOLLOW_LINKS = EnumSet.of(FileVisitOption.FOLLOW_LINKS); private final AppSettings settings;
From source file org.dkf.jed2k.android.LollipopFileSystem.java
/** * @author gubatron * @author aldenml */ public final class LollipopFileSystem implements FileSystem {