Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.RemoveFiles

TElSimpleFTPSClient     See also     


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


Recursively deletes files and directories.

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);
    procedure RemoveFiles(List : TStringList);

[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[] List);
    void removeFiles(String Path, String Mask, boolean CaseSensitive, boolean Recursive);
    void removeFiles(TElStringList List);

Parameters

  • Path - path to search for files to be deleted.
  • Mask - the mask to match the files.
  • CaseSensitive - specifies whether filename matching [to mask] is case-sensitive.
  • Recursive - specifies if the subdirectories should also be scanned for matching files.
  • List - contains the list of files to be deleted.

Description

    Use this method to recursively remove files or directories.
    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