LocalFolder

com.github.cloudfiles.localfs.LocalFsModel.LocalFolder
case class LocalFolder(id: Path, name: String, createdAt: Instant, lastModifiedAt: Instant, lastModifiedUpdate: Option[Instant]) extends Folder[Path], LocalUpdatable

A data class representing a folder in the local file system.

This class is used to read the attributes of a local folder. In addition, it has properties that are evaluated when a folder is created or updated.

Value parameters

createdAt

the folder's creation time

id

the path to the folder

lastModifiedAt

the folder's last modified time

lastModifiedUpdate

optional property to update the last modified time

name

the name of the folder

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Folder[Path]
trait Element[Path]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def description: Option[String]

Returns the description of this element. Not all file systems support such a description, and users typically do not provide one; therefore, this is an ''Option'' and can be ''None''.

Returns the description of this element. Not all file systems support such a description, and users typically do not provide one; therefore, this is an ''Option'' and can be ''None''.

Attributes

Returns

the optional description of this element

Definition Classes
Element

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product