Package com.gentlyweb.utils
Class FileDetails
- java.lang.Object
-
- com.gentlyweb.utils.FileDetails
-
public class FileDetails extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description FileDetails(java.io.File file)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canRead()
boolean
canWrite()
boolean
exists()
java.io.File
getFile()
long
getLength()
boolean
isDirectory()
boolean
isFile()
boolean
isHidden()
long
lastModified()
-
-
-
Method Detail
-
getFile
public java.io.File getFile()
-
isDirectory
public boolean isDirectory()
-
isFile
public boolean isFile()
-
canWrite
public boolean canWrite()
-
canRead
public boolean canRead()
-
getLength
public long getLength()
-
isHidden
public boolean isHidden()
-
lastModified
public long lastModified()
-
exists
public boolean exists()
-
-