mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-22 16:41:18 +01:00
Bug 2621 - Windows: the use of exFAT formatted dives is prohibited for saves and temp directory
This commit is contained in:
@@ -856,7 +856,10 @@ bool FileNames::IsOnFATFileSystem(const FilePath &path)
|
|||||||
volumeType,
|
volumeType,
|
||||||
WXSIZEOF(volumeType)))
|
WXSIZEOF(volumeType)))
|
||||||
return false;
|
return false;
|
||||||
return wxString(volumeType).Upper().find(wxT("FAT")) != wxString::npos;
|
wxString type(volumeType);
|
||||||
|
if (type == wxT("FAT") || type == wxT("FAT32"))
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
bool FileNames::IsOnFATFileSystem(const FilePath &path)
|
bool FileNames::IsOnFATFileSystem(const FilePath &path)
|
||||||
|
|||||||
Reference in New Issue
Block a user