Package jcifs.smb
Interface FileEntry
-
- All Known Implementing Classes:
FileBothDirectoryInfo,SmbShareInfo
public interface FileEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcreateTime()intgetAttributes()intgetFileIndex()StringgetName()intgetType()longlastAccess()longlastModified()longlength()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- the file name
-
getType
int getType()
- Returns:
- the file type
-
getAttributes
int getAttributes()
- Returns:
- the file attributes
-
createTime
long createTime()
- Returns:
- the creation time
-
lastModified
long lastModified()
- Returns:
- the last modified time
-
lastAccess
long lastAccess()
- Returns:
- the last access time
-
length
long length()
- Returns:
- the file size
-
getFileIndex
int getFileIndex()
- Returns:
- the file index inside the parent
-
-