FtpWebResponse GUI : FtpWebResponse « Network « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Network » FtpWebResponseScreenshots 
FtpWebResponse GUI
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using System.Net;
using System.IO;

class FtpClientForm : Form {
    public FtpClientForm() {
        InitializeComponent();
    }

    private string serverDirectory;

    private void OnOpen(object sender, EventArgs e) {
        Cursor currentCursor = this.Cursor;
        FtpWebResponse response = null;
        Stream stream = null;
        this.Cursor = Cursors.WaitCursor;

        FtpWebRequest request = (FtpWebRequest)WebRequest.Create(textServer.Text);
        request.Credentials = new NetworkCredential(textUsername.Text,
              textPassword.Text);
        request.Method = WebRequestMethods.Ftp.ListDirectory;

        response = (FtpWebResponse)request.GetResponse();

        stream = response.GetResponseStream();
        FillDirectoryList(stream);

        serverDirectory = null;
        buttonOpenDirectory.Enabled = false;
        buttonGetFile.Enabled = false;

        if (response != null)
            response.Close();
        if (stream != null)
            stream.Close();
        this.Cursor = currentCursor;
    }

    private void FillDirectoryList(Stream stream) {
        StreamReader reader = new StreamReader(stream);
        string content = reader.ReadToEnd();
        string[] files = content.Split('\n');
        listFiles.DataSource = files;
        reader.Close();
    }

    private void OnOpenDirectory(object sender, EventArgs e) {
        FtpWebResponse response = null;
        Stream stream = null;
        string subDirectory = listFiles.SelectedValue.ToString().Trim();
        serverDirectory += @"/" + subDirectory;
        Uri baseUri = new Uri(textServer.Text);
        Uri uri = new Uri(baseUri, serverDirectory);

        FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uri);
        request.Credentials = new NetworkCredential(textUsername.Text,
              textPassword.Text);

        request.Method = WebRequestMethods.Ftp.ListDirectory;
        response = (FtpWebResponse)request.GetResponse();

        stream = response.GetResponseStream();
        FillDirectoryList(stream);
        if (response != null)
            response.Close();
        if (stream != null)
            stream.Close();
    }

    private void OnDownloadFile(object sender, EventArgs e) {
        FtpWebResponse response = null;
        Stream inStream = null;
        Stream outStream = null;
        Uri baseUri = new Uri(textServer.Text);

        string filename = listFiles.SelectedValue.ToString().Trim();
        string fullFilename = serverDirectory + @"/" + filename;

        Uri uri = new Uri(baseUri, fullFilename);

        FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uri);
        request.Credentials = new NetworkCredential(textUsername.Text,textPassword.Text);
        request.Method = WebRequestMethods.Ftp.DownloadFile;
        request.UseBinary = checkBoxBinary.Checked;

        response = (FtpWebResponse)request.GetResponse();

        inStream = response.GetResponseStream();

        saveFileDialog1.FileName = filename;

        if (saveFileDialog1.ShowDialog() == DialogResult.OK) {
            outStream = File.OpenWrite(saveFileDialog1.FileName);
            byte[] buffer = new byte[4096];
            int size = 0;
            while ((size = inStream.Read(buffer, 04096)) 0) {
                outStream.Write(buffer, 0, size);
            }
        }

        if (inStream != null)
            inStream.Close();
        if (outStream != null)
            outStream.Close();
        if (response != null)
            response.Close();

    }

    private void OnFileSelection(object sender, EventArgs e) {
        this.buttonGetFile.Enabled = true;
        this.buttonOpenDirectory.Enabled = true;
    }
    private void InitializeComponent() {
        this.label1 = new System.Windows.Forms.Label();
        this.textServer = new System.Windows.Forms.TextBox();
        this.buttonOpen = new System.Windows.Forms.Button();
        this.statusStrip1 = new System.Windows.Forms.StatusStrip();
        this.listFiles = new System.Windows.Forms.ListBox();
        this.buttonOpenDirectory = new System.Windows.Forms.Button();
        this.buttonGetFile = new System.Windows.Forms.Button();
        this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
        this.checkBoxBinary = new System.Windows.Forms.CheckBox();
        this.label2 = new System.Windows.Forms.Label();
        this.label3 = new System.Windows.Forms.Label();
        this.textUsername = new System.Windows.Forms.TextBox();
        this.textPassword = new System.Windows.Forms.TextBox();
        this.SuspendLayout();
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(2831);
        this.label1.Size = new System.Drawing.Size(3713);
        this.label1.Text = "Server:";
        this.textServer.Location = new System.Drawing.Point(10931);
        this.textServer.Size = new System.Drawing.Size(14620);
        this.textServer.Text = "ftp://";
        this.buttonOpen.Location = new System.Drawing.Point(37131);
        this.buttonOpen.Size = new System.Drawing.Size(10323);
        this.buttonOpen.Text = "Open";
        this.buttonOpen.Click += new System.EventHandler(this.OnOpen);
        this.statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table;
        this.statusStrip1.Location = new System.Drawing.Point(00);
        this.statusStrip1.Size = new System.Drawing.Size(49618);
        this.statusStrip1.Text = "statusStrip1";
        this.listFiles.FormattingEnabled = true;
        this.listFiles.Location = new System.Drawing.Point(28149);
        this.listFiles.Size = new System.Drawing.Size(315160);
        this.listFiles.SelectedIndexChanged += new System.EventHandler(this.OnFileSelection);
        this.buttonOpenDirectory.Enabled = false;
        this.buttonOpenDirectory.Location = new System.Drawing.Point(37177);
        this.buttonOpenDirectory.Name = "buttonOpenDirectory";
        this.buttonOpenDirectory.Size = new System.Drawing.Size(10323);
        this.buttonOpenDirectory.TabIndex = 8;
        this.buttonOpenDirectory.Text = "Open Directory";
        this.buttonOpenDirectory.Click += new System.EventHandler(this.OnOpenDirectory);
        this.buttonGetFile.Enabled = false;
        this.buttonGetFile.Location = new System.Drawing.Point(371122);
        this.buttonGetFile.Size = new System.Drawing.Size(10323);
        this.buttonGetFile.Text = "Get File";
        this.buttonGetFile.Click += new System.EventHandler(this.OnDownloadFile);
        this.checkBoxBinary.AutoSize = true;
        this.checkBoxBinary.Checked = true;
        this.checkBoxBinary.CheckState = System.Windows.Forms.CheckState.Checked;
        this.checkBoxBinary.Location = new System.Drawing.Point(371190);
        this.checkBoxBinary.Size = new System.Drawing.Size(8117);
        this.checkBoxBinary.Text = "Binary Mode";
        this.label2.AutoSize = true;
        this.label2.Location = new System.Drawing.Point(2862);
        this.label2.Size = new System.Drawing.Size(5413);
        this.label2.Text = "Username:";
        this.label3.AutoSize = true;
        this.label3.Location = new System.Drawing.Point(28101);
        this.label3.Size = new System.Drawing.Size(5213);
        this.label3.Text = "Password:";
        this.textUsername.Location = new System.Drawing.Point(10962);
        this.textUsername.Size = new System.Drawing.Size(14620);
        this.textUsername.Text = "Anonymous";
        this.textPassword.Location = new System.Drawing.Point(109101);
        this.textPassword.PasswordChar = '?';
        this.textPassword.Size = new System.Drawing.Size(14620);
        this.textPassword.UseSystemPasswordChar = true;
        this.ClientSize = new System.Drawing.Size(496353);
        this.Controls.Add(this.textPassword);
        this.Controls.Add(this.textUsername);
        this.Controls.Add(this.label3);
        this.Controls.Add(this.label2);
        this.Controls.Add(this.checkBoxBinary);
        this.Controls.Add(this.buttonGetFile);
        this.Controls.Add(this.buttonOpenDirectory);
        this.Controls.Add(this.listFiles);
        this.Controls.Add(this.buttonOpen);
        this.Controls.Add(this.textServer);
        this.Controls.Add(this.label1);
        this.Text = "FTP Client";
        this.ResumeLayout(false);
        this.PerformLayout();

    }
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.TextBox textServer;
    private System.Windows.Forms.Button buttonOpen;
    private System.Windows.Forms.StatusStrip statusStrip1;
    private System.Windows.Forms.ListBox listFiles;
    private System.Windows.Forms.Button buttonOpenDirectory;
    private System.Windows.Forms.Button buttonGetFile;
    private System.Windows.Forms.SaveFileDialog saveFileDialog1;
    private System.Windows.Forms.CheckBox checkBoxBinary;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.TextBox textUsername;
    private System.Windows.Forms.TextBox textPassword;
    [STAThread]
    static void Main() {
        Application.EnableVisualStyles();
        Application.Run(new FtpClientForm());
    }
}

 
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.