-
Bug
-
Resolution: Done
-
Major
-
7.4.1.Final, 7.5.0.Final, 7.6.0.Final
-
None
-
-
Workaround Exists
-
-
Low
-
NEW
-
NEW
If a directory where any files are placed contains spaces
MemoryFileSystem.getFile(String path) returns object with truncated name.
To fix this error (in version 7.4.0) it is nessassary line 107
String name = decode( path ).substring( lastSlashPos + 1 );
replace with
String name = decode( path.substring( lastSlashPos + 1 ) );