# HG changeset patch # User Sebastien Jodogne # Date 1761813671 -3600 # Node ID 5561be9e9fd47e72400e896921620368d3a40276 # Parent 026b2c8957c7248bf3dc649511e27a8b3eecff55 fix diff -r 026b2c8957c7 -r 5561be9e9fd4 Common/FileSystemStorage.cpp --- a/Common/FileSystemStorage.cpp Wed Oct 15 10:36:47 2025 +0200 +++ b/Common/FileSystemStorage.cpp Thu Oct 30 09:41:11 2025 +0100 @@ -156,6 +156,5 @@ fs::path path = BaseStorage::GetOrthancFileSystemPath(uuid, fileSystemRootPath_); - return Orthanc::SystemToolbox::IsExistingFile(path.string()); + return Orthanc::SystemToolbox::IsRegularFile(path.string()); } -