mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-24 16:20:05 +02:00
Bug1567 Residual - Use wxDIR_HIDDEN in recursive delete.
Added for consistency with log of remaining files. This change should clear up .DS_Store on Mac, and so help with 1567 residual issue when files are not deleted on exit.
This commit is contained in:
parent
04c3a7c13d
commit
dd836f4841
@ -163,7 +163,7 @@ static int RecursivelyEnumerate(wxString dirPath,
|
||||
wxString name;
|
||||
|
||||
if (bFiles){
|
||||
cont= dir.GetFirst(&name, dirspec, wxDIR_FILES);
|
||||
cont= dir.GetFirst(&name, dirspec, wxDIR_FILES | wxDIR_HIDDEN);
|
||||
while ( cont ){
|
||||
wxString filepath = dirPath + wxFILE_SEP_PATH + name;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user