Lines Matching full:filesystem
9 an FTP Server and is suitable for most testing and simulation scenarios. You define a virtual filesystem
27 * Create and configure a <<<FileSystem>>>, and attach to the <<<FakeFtpServer>>> instance.
40 FileSystem fileSystem = new WindowsFakeFileSystem();
41 fileSystem.add(new DirectoryEntry("c:\\data"));
42 fileSystem.add(new FileEntry("c:\\data\\file1.txt", "abcdef 1234567890"));
43 fileSystem.add(new FileEntry("c:\\data\\run.exe"));
44 fakeFtpServer.setFileSystem(fileSystem);
119 import org.mockftpserver.fake.filesystem.FileEntry;
120 import org.mockftpserver.fake.filesystem.FileSystem;
121 import org.mockftpserver.fake.filesystem.UnixFakeFileSystem;
158 FileSystem fileSystem = new UnixFakeFileSystem();
159 fileSystem.add(new FileEntry(FILE, CONTENTS));
160 fakeFtpServer.setFileSystem(fileSystem);
189 * The <<<UnixFakeFileSystem>>> filesystem is configured and attached to the <<<FakeFtpServer>>> instance
233 <property name="fileSystem">
234 <bean class="org.mockftpserver.fake.filesystem.UnixFakeFileSystem">
238 <bean class="org.mockftpserver.fake.filesystem.DirectoryEntry">
241 <bean class="org.mockftpserver.fake.filesystem.FileEntry">
303 <property name="fileSystem">
304 <bean class="org.mockftpserver.fake.filesystem.WindowsFakeFileSystem">
308 <bean class="org.mockftpserver.fake.filesystem.DirectoryEntry">
314 <bean class="org.mockftpserver.fake.filesystem.FileEntry">
321 <bean class="org.mockftpserver.fake.filesystem.FileEntry">
325 <bean class="org.mockftpserver.fake.filesystem.Permissions">