Class FileInfo
java.lang.Object
com.flir.thermalsdk.live.importing.FileInfo
Describes a file on the
Camera's filesystem.-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal booleanTrue if this file object represents a directory, false otherwise.final StringThe name of the file, without the path (like Unix's basename).final FileReferenceThe abstract path to the file.final longThe file size in bytes.final LocalDateTimeThe 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