1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 00:00:06 +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:
Paul Licameli 2017-01-27 17:36:10 -05:00 committed by James Crook
parent 04c3a7c13d
commit dd836f4841

View File

@ -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;