Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.DirectoryRemove

TElCustomFileSystemAdapter     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Removes the specified directory from the file system.

Declaration

[C#]
    int DirectoryRemove(string Path);

[VB.NET]
    Function DirectoryRemove(ByVal Path As String) As Integer

[Pascal]
    function DirectoryRemove(const Path : string) : integer; virtual; abstract;

[C++]
    int32_t DirectoryRemove(const std::string &Path);

[PHP]
    integer DirectoryRemove(string $Path)

[Java]
    int directoryRemove(String arg0);

Parameters

  • Path - specifies the directory to be deleted.

Return value

    Returns a VFS error code.

Possible values:

Description

    Use this method to remove a directory from the file system.

See also:     DirectoryExists     DirectoryMake     EnumDirectoryEntries    

Discuss this help topic in SecureBlackbox Forum