mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Fix bug 65685
This commit is contained in:
@ -408,7 +408,8 @@ public:
|
||||
}
|
||||
virtual bool exists(const std::wstring& path)
|
||||
{
|
||||
return NSFile::CFileBinary::Exists(getFullFilePath(path));
|
||||
std::wstring full = getFullFilePath(path);
|
||||
return NSFile::CFileBinary::Exists(full) && !NSDirectory::Exists(full);
|
||||
}
|
||||
virtual void remove(const std::wstring& path)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user