FTPClientConnection100Class.SendFiles 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将文件从本地计算机发送到 FTP 服务器。
public:
virtual void SendFiles(cli::array <System::String ^> ^ localFileNames, System::String ^ remotePath, bool overWrite, bool transferASCII) = Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSFtpClientConnection100::SendFiles;
[System.Runtime.InteropServices.DispId(19)]
public virtual void SendFiles (string[] localFileNames, string remotePath, bool overWrite, bool transferASCII);
[<System.Runtime.InteropServices.DispId(19)>]
abstract member SendFiles : string[] * string * bool * bool -> unit
override this.SendFiles : string[] * string * bool * bool -> unit
Public Overridable Sub SendFiles (localFileNames As String(), remotePath As String, overWrite As Boolean, transferASCII As Boolean)
参数
- localFileNames
- String[]
要发送到 FTP 服务器的文件的列表。
- remotePath
- String
将已发送的文件保存到其中的远程文件夹。
- overWrite
- Boolean
如果目标文件存在,则为 true;否则为 false。
- transferASCII
- Boolean
如果以 ASCII 模式将文件传输到 FTP 服务器,则为 true;false,若要以二进制模式将文件传输到 FTP 服务器。
实现
- 属性