Pratik Dholu

Pratik Dholu

  • 1.6k
  • 170
  • 11.7k

Find Path Download folder.

Aug 19 2024 11:30 AM

Hi,

How to find Download folder path.

 

Regards,

Pratik 

 

 


Answers (2)

4
Amit Mohanty

Amit Mohanty

  • 16
  • 51.5k
  • 6m
Aug 19 2024 1:05 PM
public static string GetDownloadFolderPath()
{
    string downloadFolderPath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "\\Downloads";
    return downloadFolderPath;
}

 

4
Gowtham Cp

Gowtham Cp

  • 617
  • 1.7k
  • 5.8k
Aug 19 2024 12:42 PM

Hi Pratik,

To find the path to the Downloads folder on Windows:

1. Open File Explorer.
2. Click on "Downloads" in the left-hand pane.
3. The path will be shown in the address bar at the top.

Let me know if you need any more help!