Skip to main content
Version: v1

IDirectoryCreateSubDirectoryOperation Interface

Operation indicating a subdirectory should be created.

Signature

export interface IDirectoryCreateSubDirectoryOperation

Properties

PropertyTypeDescription
pathstringAbsolute path of the directory that will contain the new subdirectory.
subdirNamestringName of the new subdirectory.
type"createSubDirectory"String identifier of the operation type.

Property Details

path

Absolute path of the directory that will contain the new subdirectory.

Signature

path: string;

Type: string

subdirName

Name of the new subdirectory.

Signature

subdirName: string;

Type: string

type

String identifier of the operation type.

Signature

type: "createSubDirectory";

Type: "createSubDirectory"