Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.RemoveFiles

TElSimpleSFTPClient     See also     


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


Removes the file on a server side.

Declaration

[C#]
    void RemoveFiles(string Path, string Mask, bool CaseSensitive, bool Recursive);
    void RemoveFiles(TElStringList List);
    void RemoveFiles(String[] List);

[VB.NET]
    Sub RemoveFiles(ByVal Path As String, ByVal Mask As String, ByVal CaseSensitive As Boolean, ByVal Recursive As Boolean)
    Sub RemoveFiles(ByVal List As TElStringList)
    Sub RemoveFiles(ByVal List As String[])

[Pascal]
    procedure RemoveFiles(const Path, Mask : string; CaseSensitive : boolean; Recursive : boolean); overload;
    procedure RemoveFiles(List : TStrings); overload;

[C++]
    void RemoveFiles(const std::string &Path, const std::string &Mask, bool CaseSensitive, bool Recursive);
    void RemoveFiles(TStrings &List);
    void RemoveFiles(TStrings *List);

[PHP]
    void RemoveFiles(string $Path, string $Mask, bool $CaseSensitive, bool $Recursive)
    void RemoveFiles(TStrings $List)

[Java]
    void removeFiles(String Path, String Mask, boolean CaseSensitive, boolean Recursive);
    void removeFiles(TElStringList List);
    void removeFiles(String[] List);

Parameters

  • List - list of files to be removed
  • Path - path to the files to be removed
  • Mask - mask of the files to be removed
  • CaseSensitive - specifies, whether to treat filenames case-sensitively
  • Recursive - specifies, whether to remove files recursively, i.e. including subdirectories

Description

    Use this method to delete a number of files.
    In case of error, EElSFTPError exception containing the SFTP error code, is raised. For more information on error handling, please read the corresponding how-to article.
Files are chosen by the mask which can be a simple mask, a set of masks, or a regular expression (read more about masks).
    Since SecureBlackbox version 13, file masks in group operations support expressions.

Discuss this help topic in SecureBlackbox Forum