Packages

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FtpFile
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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

Value Members

  1. val isDirectory: Boolean
  2. val isFile: Boolean
  3. val lastModified: Long
  4. val name: String
  5. val path: String
  6. val permissions: Set[PosixFilePermission]
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product
  8. val size: Long