Class IFileSystem.PathInfo

  • Enclosing interface:
    IFileSystem

    public static class IFileSystem.PathInfo
    extends java.lang.Object
    Stores a path element (one level).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      long created
      datetime when created
      boolean isDirectory
      whether the given path element represents a directory
      long modified
      datetime when modified
      java.lang.String name
      the simple name (the last name in the path)
      long size
      the size of the file (for directories, always 0)
    • Constructor Summary

      Constructors 
      Constructor Description
      PathInfo()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • isDirectory

        public boolean isDirectory
        whether the given path element represents a directory
      • created

        public long created
        datetime when created
      • modified

        public long modified
        datetime when modified
      • name

        public java.lang.String name
        the simple name (the last name in the path)
      • size

        public long size
        the size of the file (for directories, always 0)
    • Constructor Detail

      • PathInfo

        public PathInfo()