Class FileInfo
java.lang.Object
com.flir.thermalsdk.live.importing.FileInfo
Describes a file on the
Camera
's filesystem.-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal boolean
True if this file object represents a directory, false otherwise.final String
The name of the file, without the path (like Unix's basename).final FileReference
The abstract path to the file.final long
The file size in bytes.final LocalDateTime
The time this file was last changed. -
Constructor Summary
ConstructorsConstructorDescriptionFileInfo
(String name, FileReference reference, LocalDateTime time, long size) FileInfo
(String name, FileReference reference, LocalDateTime time, long size, boolean isDirectory) -
Method Summary
-
Field Details
-
name
The name of the file, without the path (like Unix's basename). -
reference
The abstract path to the file. -
time
The time this file was last changed. -
size
public final long sizeThe file size in bytes. -
isDirectory
public final boolean isDirectoryTrue if this file object represents a directory, false otherwise.
-
-
Constructor Details
-
FileInfo
-
FileInfo
public FileInfo(String name, FileReference reference, LocalDateTime time, long size, boolean isDirectory)
-
-
Method Details