Function ioctl

  • Perform an ioctl on a file or file system.

    Type Parameters

    • const Command extends number
    • const Args extends unknown[]
    • const Return extends any

    Parameters

    • this: V_Context
    • path: string

      The path to the file or file system to perform the ioctl on

    • command: Command

      The command to perform (uint32)

    • ...args: Args

      The arguments to pass to the command

    Returns Promise<Return>