Click here to Skip to main content
15,900,258 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [C] possible OOP approach Pin
CPallini17-Jun-15 21:25
mveCPallini17-Jun-15 21:25 
AnswerRe: [C] possible OOP approach Pin
Stefan_Lang18-Jun-15 20:36
Stefan_Lang18-Jun-15 20:36 
AnswerRe: [C] possible OOP approach Pin
cth02721-Jun-15 12:08
cth02721-Jun-15 12:08 
QuestionSuggestions on real-time video display with drawing Pin
Kiran Satish17-Jun-15 6:08
Kiran Satish17-Jun-15 6:08 
AnswerRe: Suggestions on real-time video display with drawing Pin
CPallini17-Jun-15 21:06
mveCPallini17-Jun-15 21:06 
GeneralRe: Suggestions on real-time video display with drawing Pin
Kiran Satish23-Jun-15 9:39
Kiran Satish23-Jun-15 9:39 
GeneralRe: Suggestions on real-time video display with drawing Pin
DEmberton26-Jun-15 3:44
DEmberton26-Jun-15 3:44 
QuestionCString.Format anomaly Pin
ForNow17-Jun-15 3:02
ForNow17-Jun-15 3:02 
AnswerRe: CString.Format anomaly Pin
Richard MacCutchan17-Jun-15 3:13
mveRichard MacCutchan17-Jun-15 3:13 
GeneralRe: CString.Format anomaly Pin
ForNow17-Jun-15 7:48
ForNow17-Jun-15 7:48 
GeneralRe: CString.Format anomaly Pin
Richard MacCutchan17-Jun-15 8:07
mveRichard MacCutchan17-Jun-15 8:07 
GeneralRe: CString.Format anomaly Pin
ForNow17-Jun-15 8:26
ForNow17-Jun-15 8:26 
AnswerRe: CString.Format anomaly Pin
Jochen Arndt17-Jun-15 3:27
professionalJochen Arndt17-Jun-15 3:27 
GeneralRe: CString.Format anomaly Pin
ForNow17-Jun-15 7:46
ForNow17-Jun-15 7:46 
GeneralRe: CString.Format anomaly Pin
jeron117-Jun-15 8:00
jeron117-Jun-15 8:00 
GeneralRe: CString.Format anomaly Pin
ForNow17-Jun-15 8:11
ForNow17-Jun-15 8:11 
GeneralRe: CString.Format anomaly Pin
jeron117-Jun-15 8:19
jeron117-Jun-15 8:19 
QuestionMultithread c Windows Pin
mosine16-Jun-15 2:22
mosine16-Jun-15 2:22 
AnswerRe: Multithread c Windows Pin
Jochen Arndt16-Jun-15 2:33
professionalJochen Arndt16-Jun-15 2:33 
GeneralRe: Multithread c Windows Pin
mosine16-Jun-15 2:47
mosine16-Jun-15 2:47 
GeneralRe: Multithread c Windows Pin
mosine16-Jun-15 3:01
mosine16-Jun-15 3:01 
GeneralRe: Multithread c Windows Pin
Jochen Arndt16-Jun-15 3:02
professionalJochen Arndt16-Jun-15 3:02 
GeneralRe: Multithread c Windows Pin
mosine16-Jun-15 3:21
mosine16-Jun-15 3:21 
QuestionFailure to remove folders after using CFileDialog DoModal Pin
Still learning how to code15-Jun-15 21:28
Still learning how to code15-Jun-15 21:28 
I picked up a function RecursiveDelete on the internet, as I needed to erase all files and folders on an SD card (as part of a larger project). I was having problems insofar as the function would fail on removing the folders after CFileDialog DoModal - there were two nested folders, the deepest failing with code 32 ("in use by another proicess") and the shallowest with 145 ("folder not empty" - expected !)
However, if I call the function BEFORE the DoModal, then everything works fine.
I have extracted the relevent code into a simpler project and it still fails
Perhaps some kind soul can throw some light on why this is so !!

C++
CFileDialog dlgFileBrowse(true);

	UINT uiFileBrowseDlgRC;

// OK here 
	RecursiveDelete("F:");		// 20150615  

//
	uiFileBrowseDlgRC = dlgFileBrowse.DoModal();

//   FAILS HERE - YES


void CDeleteFolderTestDlg::RecursiveDelete(CString szPath)
{
	CFileFind ff;
	BOOL bResult;
	CString path = szPath;
	
	if(path.Right(1) != '\\')	
		path += '\\';			

	path += "*.*";

	bResult = ff.FindFile(path);
	BOOL bItemDelete;
	DWORD dwLastError;
	CString szFilePath;

	while(bResult)
	{
		bResult = ff.FindNextFile();
		if (!ff.IsDots() && !ff.IsDirectory())
		{
			szFilePath = ff.GetFilePath();
			bItemDelete = DeleteFile(szFilePath);
			if(!bItemDelete)
				dwLastError = GetLastError();
		}
		else if (ff.IsDirectory() && !ff.IsDots())	
		{
			path = ff.GetFilePath();

			RecursiveDelete(path);

			bItemDelete = RemoveDirectory(path);
			if(!bItemDelete)
				dwLastError = GetLastError();
		}
	}
}

//	RecursiveDelete("F:");

Doug


modified 16-Jun-15 3:39am.

AnswerRe: Failure to remove folders after using CFileDialog DoModal Pin
Freak3016-Jun-15 0:21
Freak3016-Jun-15 0:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.