I have a DownloadTask class in java that takes a filename and URL, downloads that file and saves it to the downloads folder.
To save it to my downloads folder, I have the line
File file = new File("/users/myName/Downloads" + fileName + ".txt");
What can I replace this path with so that anyone can run the program and the file will be saved to their downloads folder?