zoukankan      html  css  js  c++  java
  • C# ftp ListFilesOnServer

    public static bool ListFilesOnServer(Uri serverUri)
    {
        // The serverUri should start with the ftp:// scheme.
        if (serverUri.Scheme != Uri.UriSchemeFtp)
        {
            return false;
        }
        // Get the object used to communicate with the server.
        FtpWebRequest request = (FtpWebRequest)WebRequest.Create(serverUri);
        request.Method = WebRequestMethods.Ftp.ListDirectory;
    
        // Get the ServicePoint object used for this request, and limit it to one connection.
        // In a real-world application you might use the default number of connections (2),
        // or select a value that works best for your application.
    
        ServicePoint sp = request.ServicePoint;
        Console.WriteLine("ServicePoint connections = {0}.", sp.ConnectionLimit);
        sp.ConnectionLimit = 1;
    
        FtpWebResponse response = (FtpWebResponse) request.GetResponse();
    
        // The following streams are used to read the data returned from the server.
        Stream responseStream = null;
        StreamReader readStream = null;
        try
        {
            responseStream = response.GetResponseStream(); 
            readStream = new StreamReader(responseStream, System.Text.Encoding.UTF8);
    
            if (readStream != null)
            {
                // Display the data received from the server.
                Console.WriteLine(readStream.ReadToEnd());
            } 
            Console.WriteLine("List status: {0}",response.StatusDescription);            
        }
        finally
        {
            if (readStream != null)
            {
                readStream.Close();
            }
            if (response != null)
            {
                response.Close();
            }
        }
    
        return true;
    }
  • 相关阅读:
    450. K组翻转链表
    6. 合并排序数组 II
    64. 合并排序数组
    165. 合并两个排序链表
    103. 带环链表 II
    102. 带环链表
    [web安全原理]PHP命令执行漏洞基础
    [原题复现]-HITCON 2016 WEB《babytrick》[反序列化]
    《将博客搬至CSDN》
    PHP反序列化漏洞-CVE-2016-7124(绕过__wakeup)复现
  • 原文地址:https://www.cnblogs.com/endv/p/7476602.html
Copyright © 2011-2022 走看看