trait FilenameSanitization extends AnyRef

Utility mixin that includes methods for sanitizing filenames and paths for use in an actual filesystem.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FilenameSanitization
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit class StringFilenameSanitization extends AnyRef

    Convenience implicit that lets you call myPath.toSanitizedPath or myFilename.toSanitizedFilename.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. lazy val illegalFilenameChars: Set[Char]

    A set of Chars that may not be present in a file name.

    A set of Chars that may not be present in a file name. (Forward and backward slashes are allowed in paths as separators, so they should not be included in a filename. Therefore they are included in this set.)

  12. lazy val illegalPathChars: Set[Char]

    A set of Chars that may not be present in a file path.

    A set of Chars that may not be present in a file path. (Forward and backward slashes are allowed in paths as separators, so they will not be present in this set.)

  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def sanitize(s: String, illegalChars: Set[Char]): String
  18. def sanitizeFilename(name: String): String

    Creates a copy of the given name where any illegal filename character in the original name is replaced with an underscore.

    Creates a copy of the given name where any illegal filename character in the original name is replaced with an underscore. Forward and backward slashes are also removed; to keep them, use sanitizePath instead.

  19. def sanitizePath(path: String): String

    Creates a copy of the given path where any illegal path character in the original path is replaced with an underscore.

    Creates a copy of the given path where any illegal path character in the original path is replaced with an underscore. Forward and backward slashes are left as-is.

  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped