FileMode

class FileMode(var owner: Int, var group: Int = 0, var all: Int = 0, var prefix: String = "")

Constructors

Link copied to clipboard
fun FileMode(modeString: CharSequence, prefix: String = "")
Link copied to clipboard
fun FileMode(owner: FileModeValue, group: FileModeValue = FileModeValue.NONE, all: FileModeValue = FileModeValue.NONE, prefix: String = "")
Link copied to clipboard
fun FileMode(owner: Int, group: Int = 0, all: Int = 0, prefix: String = "")

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
var all: Int = 0
Link copied to clipboard
var group: Int = 0
Link copied to clipboard
var owner: Int
Link copied to clipboard