Package org.linkedin.util.io.ram

Examples of org.linkedin.util.io.ram.RAMDirectory.touch()


    {
      File file = new File(directory, name);
      if(file.isDirectory())
      {
        RAMDirectory subdir = ramDirectory.mkdir(name);
        subdir.touch(file.lastModified());
        populateRAMDirectory(subdir, file);
      }
      else
      {
        ramDirectory.add(name, readContent(file)).touch(file.lastModified());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.