I've created a program to upload images from one device to another. As it stands, the program only allows the user to upload one file at a time. If I wanted to edit the program to allow the user to upload several files at once, what would be the best way of doing it.
String source1 = source.getSelectedFile().getPath();
System.out.println("Source1: " + source1);
String nwdir1 = nwdir.getSelectedFile().getPath() + "\\" + filename;
System.out.println("nwdir1: " + nwdir1);
Path source = Paths.get(source1);
Path nwdir = Paths.get(nwdir1);
try {
Files.copy(source, nwdir);
I've noticed you can do .getSelectedFiles(), but as that doesn't allow .getPath() im unsure how to continue. Assuming you can do this:
File[] source1 = source.getSelectedFiles();
How would I go about doing the second line:
String nwdir1 = nwdir.getSelectedFile().getPath() + "\\" + filename;
When I replace the line with the File array (shown above), I get an error on lines:
Path source = Paths.get(source1);
Path nwdir = Paths.get(nwdir1);
