in src/main/java/org/apache/sling/fsprovider/internal/mapper/FileVaultResourceMapper.java [242:254]
private File resolveFile(String path) {
if (StringUtils.endsWith(path, DOT_CONTENT_XML_SUFFIX)) {
return null;
}
File file = new File(providerFile, "." + PlatformNameFormat.getPlatformPath(path));
if (fileStatCache.exists(file)) {
if (StringUtils.endsWith(path, XML_SUFFIX) && !hasDotDirFile(file)) {
return null;
}
return file;
}
return null;
}