final case class FtpFile(name: String, path: String, isDirectory: Boolean, size: Long, lastModified: Long, permissions: Set[PosixFilePermission]) extends Product with Serializable
FTP remote file descriptor.
- name
file name
- path
remote file path as viewed by the logged user. It should always start by '/'
- isDirectory
the descriptor is a directory
- size
the file size in bytes
- lastModified
the timestamp of the file last modification
- permissions
the permissions of the file
- Source
- model.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FtpFile
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new FtpFile(name: String, path: String, isDirectory: Boolean, size: Long, lastModified: Long, permissions: Set[PosixFilePermission])
- name
file name
- path
remote file path as viewed by the logged user. It should always start by '/'
- isDirectory
the descriptor is a directory
- size
the file size in bytes
- lastModified
the timestamp of the file last modification
- permissions
the permissions of the file