'C# how to download all file from server to local folder

In server i have a folder named "Image", how can i download all files inside this folder to my local folder ??

what i have tried.

  WebClient Client = new WebClient();
  Client.DownloadFile("http://serverip/File/Ticket-Photo/*", @"C:\\File\\*);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source