Giter VIP home page Giter VIP logo

ftpclient's People

Contributors

kiewic avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

idmwy davecs1

ftpclient's Issues

how to get file list

Hello! :) I'm student in Republic of Korea. First, My English may hinder your understanding.
I saw the FTP Client in your github. I use Unity-UWP. The ftp client sample project works very well. I'd like to add the ability to import a Ftp file list. What should I do? Please reply :)

Problems with FTP Upload of image as byte []

I'm using the FTPClient in a Xamarin Forms project aimed solely at Windows UWP. I'm trying to upload an image taken by the camera (but scaled before saving to about 150kB). I'm using the following code to do the upload and I can confirm that the FTP server responds ok after the initial connection, but the upload fails with what looks like a timeout error. Have you seen anything like this?

 private async Task UploadAsync(string filename, string path)
        {
            string ftpUser = "XXXX";
            string ftpPass = "XXXX";
            string ftpUrl = "ftp://xxxxx/" + filename + ".jpg";

            Uri uri = new Uri(ftpUrl);

            FtpClient client = new FtpClient();

            await client.ConnectAsync(
                new HostName(uri.Host),
                 uri.Port.ToString(),
                ftpUser,
                ftpPass);

            byte[] data = null;

            await Task.Run(() =>
             {
                 data = File.ReadAllBytes(path);
             });

             await client.UploadAsync(uri.AbsolutePath, data);
            }
    }

I then get this error after about 25 seconds:

Exception thrown: 'System.Runtime.InteropServices.COMException' in mscorlib.ni.dll
WinRT information: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.