A simple C# application for downloading multiple files from direct URLs using .NET 7.
- Downloads files from a list of direct URLs.
- Saves downloaded files in a custom-named folder within the project directory.
- Lightweight and easy to use.
- .NET 7 SDK installed on your system.
-
Install .NET 7 Make sure you have the .NET 7 SDK installed.
-
Add Your URLs Create or edit the
urls.txt
file in the project root, and add one direct download URL per line. -
Run the Application In the project directory, open a terminal and run:
dotnet run
-
Save the Files Once the downloads are complete, the program will prompt you to enter a name for the destination folder. The downloaded files will be saved in a folder with that name inside the project directory.
https://example.com/file1.jpg
https://example.com/file2.pdf
Running dotnet run
will download these files and save them in a folder you specify when prompted.
This project is licensed under the MIT License.