Share feedback
Answers are generated based on the documentation.

Experimental

Schema

FilesMkdirRequest

Type: object

MkdirRequest creates a directory.
mode

Type: integer

mode supplies the new leaf's Unix permission bits: mode & 0777, or 0755 when that value is zero, without subtracting umask.
All schema constraints and annotations
{
  "description": "mode supplies the new leaf's Unix permission bits: mode \u0026 0777, or 0755\nwhen that value is zero, without subtracting umask.",
  "type": "integer"
}
parents

Type: boolean

parents creates missing parents when true.
All schema constraints and annotations
{
  "description": "parents creates missing parents when true.",
  "type": "boolean"
}
path · required

Type: string

path is the directory path.
All schema constraints and annotations
{
  "description": "path is the directory path.",
  "minLength": 1,
  "type": "string"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "MkdirRequest creates a directory.",
  "properties": {
    "mode": {
      "description": "mode supplies the new leaf's Unix permission bits: mode \u0026 0777, or 0755\nwhen that value is zero, without subtracting umask.",
      "type": "integer"
    },
    "parents": {
      "description": "parents creates missing parents when true.",
      "type": "boolean"
    },
    "path": {
      "description": "path is the directory path.",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "title": "MkdirRequest",
  "type": "object"
}