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 (in ShellBrowser.dll) Version: 7.1
Syntax public void CreateDir(
string p_Path,
string p_FolderName,
bool p_EditMode
)
Public Sub CreateDir (
p_Path As String,
p_FolderName As String,
p_EditMode As Boolean
)
public:
void CreateDir(
String^ p_Path,
String^ p_FolderName,
bool p_EditMode
)
member CreateDir :
p_Path : string *
p_FolderName : string *
p_EditMode : bool -> unit
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