Skip to main content
Version: v1

IDirectoryCreateSubDirectoryOperation Interface

Operation indicating a subdirectory should be created.

Signature

export interface IDirectoryCreateSubDirectoryOperation

Properties

Property Type Description
path string Absolute path of the directory that will contain the new subdirectory.
subdirName string Name 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"