Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.FileDelete

TElCustomFileSystemAdapter     See also     


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


Deletes the specified file.

Declaration

[C#]
    int FileDelete(string Path);

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

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

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

[PHP]
    integer FileDelete(string $Path)

[Java]
    int fileDelete(String arg0);

Parameters

  • Path - path to the file to be deleted.

Return value

    Returns a VFS error code.

Possible values:

Description

    Call this method to delete the specified file from the file system.

See also:     FileExists     FileCopy     FileMove    

Discuss this help topic in SecureBlackbox Forum