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
Assembly:  ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax
public void CreateDir(
	string p_Path,
	string p_FolderName,
	bool p_EditMode
)

Parameters

p_Path
Type: SystemString
The path where the folder should be created in.
p_FolderName
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.
p_EditMode
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