Home | History | Annotate | Download | only in filesystem

Lines Matching defs:filesystem

16 package org.mockftpserver.fake.filesystem;

33 * Abstract superclass for implementation of the FileSystem interface that manage the files
43 * filesystem-specific manner. This property must be initialized by concrete subclasses.
48 public abstract class AbstractFakeFileSystem implements FileSystem {
89 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
90 * entries already existing within this filesystem.
110 throw new FileSystemException(path, "filesystem.pathAlreadyExists");
118 throw new FileSystemException(parent, "filesystem.parentDirectoryDoesNotExist");
140 * @see org.mockftpserver.fake.filesystem.FileSystem#delete(java.lang.String)
158 * @see org.mockftpserver.fake.filesystem.FileSystem#exists(java.lang.String)
171 * @see org.mockftpserver.fake.filesystem.FileSystem#isDirectory(java.lang.String)
185 * @see org.mockftpserver.fake.filesystem.FileSystem#isFile(java.lang.String)
201 * @see org.mockftpserver.fake.filesystem.FileSystem#listFiles(java.lang.String)
229 * @see org.mockftpserver.fake.filesystem.FileSystem#listNames(java.lang.String)
263 throw new FileSystemException(toPath, "filesystem.alreadyExists");
275 throw new FileSystemException(toPath, "filesystem.renameFailed");
383 * @see FileSystem
395 * @return true if the specified dir/file path name is valid according to the current filesystem.
406 * @return true if the specified path component is a root for this filesystem
411 * Return true if the specified char is a separator character for this filesystem
489 throw new FileSystemException(normalize(path), "filesystem.doesNotExist");