Dart.Ftp 名前空間 : FtpSession クラス |
<TypeConverterAttribute("System.ComponentModel.ExpandableObjectConverter, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")> <SerializableAttribute()> Public Class FtpSession Inherits TcpSession
[TypeConverter("System.ComponentModel.ExpandableObjectConverter, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [Serializable()] public class FtpSession : TcpSession
private void getFile() { // サーバーからファイルを取得します。 ftp1.Session.RemoteEndPoint.HostNameOrAddress = myServer; ftp1.Session.Username = myUsername; ftp1.Session.Password = myPassword; ftp1.Connect(); ftp1.Authenticate(); ftp1.Get("myFile.pdf", myLocalDirectory + "\\myFile.pdf", Synchronize.Off); ftp1.Close(); } private void ftp1_Progress(object sender, ProgressEventArgs e) { // 進行状況情報(処理、ファイル名、ファイルの位置、ファイルの長さ)を表示します。 string s = (e.Item.Action == CopyAction.Get) ? "Getting " : "Putting "; s += e.Item.RemotePath + " (" + e.Item.Position.ToString() + " of " + e.Item.Length.ToString() + ")"; showProgress(s); }
Private Sub getFile() ' サーバーからファイルを取得します。 ftp1.Session.RemoteEndPoint.HostNameOrAddress = myServer ftp1.Session.Username = myUsername ftp1.Session.Password = myPassword ftp1.Connect() ftp1.Authenticate() ftp1.Get("myFile.pdf", myLocalDirectory & "\myFile.pdf", Synchronize.Off) ftp1.Close() End Sub Private Sub ftp1_Progress(ByVal sender As Object, ByVal e As ProgressEventArgs) Handles ftp1.Progress ' 進行状況情報(処理、ファイル名、ファイルの位置、ファイルの長さ)を表示します。 Dim s As String s = If((e.Item.Action = CopyAction.Get), "Getting ", "Putting ") s &= e.Item.RemotePath & " (" & e.Item.Position.ToString() & " of " & e.Item.Length.ToString() & ")" showProgress(s) End Sub
System.Object
Dart.Ftp.Session
Dart.Ftp.TcpSession
Dart.Ftp.FtpSession