Skip to content
Snippets Groups Projects
Commit a5d30b38 authored by tpylak's avatar tpylak
Browse files

DMV-16 CopyActivityMonitor sometimes see no copy progress, although it runs correctly

SVN: 6421
parent f16187e5
No related branches found
No related tags found
No related merge requests found
...@@ -555,12 +555,13 @@ public final class FileUtilities ...@@ -555,12 +555,13 @@ public final class FileUtilities
{ {
assert path != null; assert path != null;
if (path.canRead() == false) final long lastModified = path.lastModified();
if (lastModified == 0)
{ {
throw new CheckedExceptionTunnel(new IOException(String.format( throw new CheckedExceptionTunnel(new IOException(String.format(
"Path '%s' cannot be read.", path.getPath()))); "Cannot get the last modification date of '%s'.", path.getPath())));
} }
final long lastModified = path.lastModified();
lastChanged = Math.max(lastModified, lastChanged); lastChanged = Math.max(lastModified, lastChanged);
if (isYoungEnough(lastChanged)) if (isYoungEnough(lastChanged))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment