vfs « Development « Java I/O Q&A





1. Handling archive contents as VFS?    stackoverflow.com

I'm implementing someting like a file browser.Now I'm trying to recognize files inside archive virtually -the user could browse these files and return to other files in the filesystem-. So what ...

2. Commons vfs findFiles imaginary file    stackoverflow.com

In my quartz job I want to read csv files from directory using commons-vfs.

try {
    FileSystemManager fsManager = VFS.getManager();
    final FileObject fileObject = fsManager.resolveFile(getJob().getDirectory());
  ...