Interface Options

Options for xattr operations.

interface Options {
    encoding?: "buffer" | BufferEncoding;
    noFollow?: boolean;
}

Hierarchy (View Summary)

Properties

Properties

encoding?: "buffer" | BufferEncoding

Encoding for attribute values. If 'buffer' or undefined, the value is returned as a Buffer. Otherwise, the value is returned as a string using the specified encoding.

undefined
noFollow?: boolean

If true, don't follow symlinks.

false