FileIdentifier

data class FileIdentifier(val fileName: Option<String>, val fileExtension: Option<String>, val filePath: Option<Path>, val fileHashSha256: String) : FileIdentifierInterface

Identifier of a file with hash checksum to verify data integrity.

Parameters

fileName

actual name of the file

fileExtension

extension of the file

filePath

path to the file

fileHashSha256

hash of the file

Constructors

Link copied to clipboard
fun FileIdentifier(fileName: Option<String>, fileExtension: Option<String>, filePath: Option<Path>, fileHashSha256: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val fileExtension: Option<String>
Link copied to clipboard
open override val fileHashSha256: String
Link copied to clipboard
open override val fileName: Option<String>
Link copied to clipboard
open override val filePath: Option<Path>