[This is preliminary documentation and is subject to change.]
Called to remove a directory from the plugin's file system.
Namespace: Tools.TotalCommanderTAssembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[CLSCompliantAttribute(false)] [EditorBrowsableAttribute(EditorBrowsableState.Never)] public int FsRemoveDir( sbyte* RemoteName ) |
| Visual Basic |
|---|
<CLSCompliantAttribute(False)> _ <EditorBrowsableAttribute(EditorBrowsableState.Never)> _ Public Function FsRemoveDir ( _ RemoteName As SByte* _ ) As Integer |
| Visual C++ |
|---|
[CLSCompliantAttribute(false)] [EditorBrowsableAttribute(EditorBrowsableState::Never)] public: int FsRemoveDir( signed char* RemoteName ) |
| F# |
|---|
[<CLSCompliantAttribute(false)>] [<EditorBrowsableAttribute(EditorBrowsableState.Never)>] member FsRemoveDir : RemoteName:nativeptr<sbyte> -> int |
| JScript |
|---|
|
Parameters
- RemoteName
- Type: System..::..SByte*
Name of the directory to be removed, with full path. The name always starts with a backslash, then the names returned by FsFindFirst(SByte*, _WIN32_FIND_DATAW*)/FsFindNext(Void*, _WIN32_FIND_DATAW*) separated by backslashes.
Return Value
Return TRUE if the directory could be removed, FALSE if not.
Remarks
This function is called by Total Commander and is not intended for direct use