ShellSystemListCreateDir Method |
Creates a new directory in the current folder.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic bool CreateDir(
string p_Name,
bool p_EditMode
)
Public Function CreateDir (
p_Name As String,
p_EditMode As Boolean
) As Boolean
public:
bool CreateDir(
String^ p_Name,
bool p_EditMode
)
member CreateDir :
p_Name : string *
p_EditMode : bool -> bool
Parameters
- p_Name String
- The name of the new folder. Do pass a single name only, not a full path.
- p_EditMode Boolean
- 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.
Return Value
BooleanTrue if the folder was successfully created, false if not.
See Also