Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.Rename

TElSimpleFTPSClient     


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


Renames the specified file.

Declaration

[C#]
    void Rename(string SourceFile, string DestFile);

[VB.NET]
    Sub Rename(ByVal SourceFile As String, ByVal DestFile As String)

[Pascal]
    procedure Rename(const SourceFile, DestFile: string);

[C++]
    void Rename(const std::string &SourceFile, const std::string &DestFile);

[PHP]
    void Rename(string $SourceFile, string $DestFile)

[Java]
    void rename(String SourceFile, String DestFile);

Parameters

  • SourceFile - the old pathname of the file which is to be renamed
  • DestFile - the new pathname of the file

Description

    Use this method when you want to rename a file.

Discuss this help topic in SecureBlackbox Forum