提交 c6a563a8 authored 作者: Thomas Mueller's avatar Thomas Mueller

Some file system operations did not work with stacked file systems.

上级 ef848eab
...@@ -376,6 +376,7 @@ public class FileSystemDisk extends FileSystem { ...@@ -376,6 +376,7 @@ public class FileSystemDisk extends FileSystem {
public boolean fileStartsWith(String fileName, String prefix) { public boolean fileStartsWith(String fileName, String prefix) {
fileName = translateFileName(fileName); fileName = translateFileName(fileName);
prefix = translateFileName(prefix);
if (IS_FILE_SYSTEM_CASE_INSENSITIVE) { if (IS_FILE_SYSTEM_CASE_INSENSITIVE) {
fileName = StringUtils.toUpperEnglish(fileName); fileName = StringUtils.toUpperEnglish(fileName);
prefix = StringUtils.toUpperEnglish(prefix); prefix = StringUtils.toUpperEnglish(prefix);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论