Click or drag to resize

ShellTreeViewCreateDir Method (String, String, Boolean)

This method creates a new directory with the name of the string argument foldername in the given path. If EditMode is True, the new folder will be switched to the edit mode after creation so that the user can change its name.

Namespace:  Jam.Shell.WPF.Controls.Winforms
Assembly:  ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax
public void CreateDir(
	string pPath,
	string pFolderName,
	bool pEditMode
)

Parameters

pPath
Type: SystemString
The path where the folder should be created in.
pFolderName
Type: SystemString
The name of the new folder. Do pass a single name only, not a full path. If an empty string is passed as foldername, a standard folder name will be used.
pEditMode
Type: SystemBoolean
Pass true, if the user should be able to edit the name of the new folder after its creation. Pass false if the new folder should not be in edit mode.
See Also