1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00

Bug 2621 - Windows: the use of exFAT formatted dives is prohibited for saves and temp directory

This commit is contained in:
Leland Lucius 2021-01-05 13:00:55 -06:00
parent fd774c0de4
commit bd4cab5e93

View File

@ -856,7 +856,10 @@ bool FileNames::IsOnFATFileSystem(const FilePath &path)
volumeType,
WXSIZEOF(volumeType)))
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
bool FileNames::IsOnFATFileSystem(const FilePath &path)