Package org.webappos.fs
Class IFileSystem.PathInfo
- java.lang.Object
-
- org.webappos.fs.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 createdboolean
isDirectory
whether the given path element represents a directorylong
modified
datetime when modifiedjava.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()
-
-
-
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)
-
-