| 123456789101112131415161718192021 |
- return {
- summary = 'Create a directory.',
- description = [[
- Creates a directory in the save directory. Any parent directories that don't exist will also be
- created.
- ]],
- arguments = {
- {
- name = 'path',
- type = 'string',
- description = 'The directory to create, recursively.'
- }
- },
- returns = {
- {
- name = 'success',
- type = 'boolean',
- description = 'Whether the directory was created.'
- }
- }
- }
|