0

I got 3 computers in local network and I need a program in C# that

  1. Read the IP address of computer you want to connect from a txt file
  2. Read the destination of the file you want to get
  3. Download a file from the computer

I don't have any specific protocols or permissions
Sorry that the question is so broad and generic

parsley72
  • 8,449
  • 8
  • 65
  • 98

2 Answers2

0

Check out the FTPWebRequest class which is part of the .net framework located here:

https://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest(v=vs.110).aspx

nerdybeardo
  • 4,655
  • 23
  • 32
0

Try code mentioned in below article

https://learn.microsoft.com/en-us/dotnet/framework/network-programming/how-to-download-files-with-ftp

Pratik Gaikwad
  • 1,526
  • 2
  • 21
  • 44