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:
parent
fd774c0de4
commit
bd4cab5e93
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user