コード例 #1
0
  /** Initialize the virtual file system with the current directory the JVM was started from */
  public void init() {

    root = new VFolder(null, null);

    String workingDir = getWorkingDirPath();
    createFolder(workingDir);
    createFolder(getTmpFolderPath());

    // important to clear, as above code would modify this field
    accessedFiles.clear();
  }