Display Opened File Path

A bit better for debugging which file the user has opened
This commit is contained in:
Konloch 2021-07-15 12:39:43 -07:00
parent 068c3c5560
commit 45c9cd5d1a
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class ImportResource implements Runnable
for (final File file : files)
{
final String fn = file.getName();
System.out.println("Opening..." + fn);
System.out.println("Opening..." + file.getAbsolutePath());
//check if file exists
if (!file.exists())