FilenameToString

class FilenameToString(val folder: File) : Converter<File, String>

Converts between a File and a String.

When converting from a String to a File, the result is folder/string

When converting from a File to a String, the file's name (folder is ignored).

Constructors

Link copied to clipboard
constructor(folder: File)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open override fun backwards(value: String): File
Link copied to clipboard
open override fun forwards(value: File): String