[This is preliminary documentation and is subject to change.]
Called to delete a file 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# |
|---|
[EditorBrowsableAttribute(EditorBrowsableState.Never)] [CLSCompliantAttribute(false)] public int FsDeleteFile( sbyte* RemoteName ) |
| Visual Basic |
|---|
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _ <CLSCompliantAttribute(False)> _ Public Function FsDeleteFile ( _ RemoteName As SByte* _ ) As Integer |
| Visual C++ |
|---|
[EditorBrowsableAttribute(EditorBrowsableState::Never)] [CLSCompliantAttribute(false)] public: int FsDeleteFile( signed char* RemoteName ) |
| F# |
|---|
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>] [<CLSCompliantAttribute(false)>] member FsDeleteFile : RemoteName:nativeptr<sbyte> -> int |
| JScript |
|---|
|
Parameters
- RemoteName
- Type: System..::..SByte*
Name of the file to be deleted, 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 file could be deleted, FALSE if not.
Remarks
This function is called by Total Commander and is not intended for direct use