Skip to content

Commit

Permalink
more canonical paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Nov 5, 2019
1 parent b1915b8 commit 7881767
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ public static void copyFile(File sourceFile, File destinationFile, MessageConsol
String sizeString = StringUtils.convertSizeToString(size);

out.println("Copy " + sizeString);
out.println(" from \"" + sourceFile + "\"");
out.println(" to \"" + destinationFile + "\"");
out.println(" from \"" + sourceFile.getCanonicalPath() + "\"");
out.println(" to \"" + destinationFile.getCanonicalPath() + "\"");
}

destinationFile.getParentFile().mkdirs();
Expand Down

0 comments on commit 7881767

Please sign in to comment.