FileOperationQueueCreate(String, String, FileAttributes) Method

Queues a create operation for a file or directory.

Definition

Namespace: DevCase.Core.IO.FileSystem
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public void QueueCreate(
	string dstDirPath,
	string newItemName,
	FileAttributes attribs = FileAttributes.Normal
)

Parameters

dstDirPath  String
Destination directory path to create the file or directory.
newItemName  String
File or directory to create.

To create a directory, you must set the Directory flag in attribs parameter.

attribs  FileAttributes  (Optional)
Optionally, gives the specified attributes to the created file or directory.

See Also