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