Display Opened File Path
A bit better for debugging which file the user has opened
This commit is contained in:
parent
068c3c5560
commit
45c9cd5d1a
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue