object Files

FileSystem utilities.

Source
Files.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Files
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class DefaultTemporaryFileCreator extends TemporaryFileCreator

    Creates temporary folders inside a single temporary folder.

    Creates temporary folders inside a single temporary folder. deleting all files on a successful application stop. Note that this will not clean up the filesystem if the application / JVM terminates abnormally.

    Annotations
    @Singleton()
  2. class DefaultTemporaryFileReaper extends TemporaryFileReaper
    Annotations
    @Singleton()
  3. trait TemporaryFile extends AnyRef
  4. trait TemporaryFileCreator extends AnyRef

    Logic for creating a temporary file.

    Logic for creating a temporary file. Users should try to clean up the file themselves, but this TemporaryFileCreator implementation may also try to clean up any leaked files, e.g. when the Application or JVM stops.

  5. trait TemporaryFileReaper extends AnyRef
  6. case class TemporaryFileReaperConfiguration(enabled: Boolean = false, olderThan: FiniteDuration = 5.minutes, initialDelay: FiniteDuration = 5.minutes, interval: FiniteDuration = 5.minutes) extends Product with Serializable

    Configuration for the TemporaryFileReaper.

    Configuration for the TemporaryFileReaper.

    enabled

    true if the reaper is enabled, false otherwise. Default is false.

    olderThan

    the period after which the file is considered old. Default 5 minutes.

    initialDelay

    the initial delay after application start when the reaper first run. Default 5 minutes.

    interval

    the duration after the initial run during which the reaper will scan for files it can remove. Default 5 minutes.

  7. class TemporaryFileReaperConfigurationProvider extends Provider[TemporaryFileReaperConfiguration]
    Annotations
    @Singleton()

Value Members

  1. lazy val logger: org.slf4j.Logger
  2. object SingletonTemporaryFileCreator extends TemporaryFileCreator

    Creates temporary folders using java.nio.file.Files.createTempFile.

    Creates temporary folders using java.nio.file.Files.createTempFile.

    Files created by this method will not be cleaned up with the application or JVM stops.

  3. object TemporaryFile

    Utilities to manage temporary files.

  4. object TemporaryFileReaperConfiguration extends Serializable