Click here to Skip to main content
16,006,348 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Requirements to create a game Pin
Rajesh R Subramanian4-Jun-08 18:54
professionalRajesh R Subramanian4-Jun-08 18:54 
QuestionRe: Requirements to create a game Pin
Rajesh R Subramanian15-Jul-08 1:09
professionalRajesh R Subramanian15-Jul-08 1:09 
AnswerRe: Requirements to create a game Pin
Hamid_RT4-Jun-08 21:07
Hamid_RT4-Jun-08 21:07 
QuestionToolbar in a dialog based application Pin
vidya1103-Jun-08 23:26
vidya1103-Jun-08 23:26 
AnswerRe: Toolbar in a dialog based application Pin
sudhir_Kumar3-Jun-08 23:32
sudhir_Kumar3-Jun-08 23:32 
GeneralRe: Toolbar in a dialog based application Pin
vidya1109-Jun-08 1:40
vidya1109-Jun-08 1:40 
AnswerRe: Toolbar in a dialog based application Pin
Hamid_RT4-Jun-08 21:09
Hamid_RT4-Jun-08 21:09 
Questiondelete a folder Pin
mihai1233-Jun-08 23:10
mihai1233-Jun-08 23:10 
Hello,
I'm trying to delete a folder with all subfolder that are in it.

I found this structure on MSN
typedef struct _SHFILEOPSTRUCT {
    HWND hwnd;
    UINT wFunc;
    LPCTSTR pFrom;
    LPCTSTR pTo;
    FILEOP_FLAGS fFlags;
    BOOL fAnyOperationsAborted;
    LPVOID hNameMappings;
    LPCTSTR lpszProgressTitle;
} SHFILEOPSTRUCT, *LPSHFILEOPSTRUCT;


try it like this

SHFILEOPSTRUCT op;
op.pFrom = _T("C:\\zipTest\\td10Updater\\*.*\0\0");
//op.pTo = _T("");		//will be ignored
op.wFunc = FO_DELETE;
op.fFlags = FOF_SILENT;
SHFileOperation(&op);

what is wrong ?
AnswerRe: delete a folder Pin
sudhir_Kumar3-Jun-08 23:30
sudhir_Kumar3-Jun-08 23:30 
AnswerRe: delete a folder Pin
mihai1233-Jun-08 23:45
mihai1233-Jun-08 23:45 
GeneralRe: delete a folder Pin
sudhir_Kumar3-Jun-08 23:47
sudhir_Kumar3-Jun-08 23:47 
GeneralRe: delete a folder Pin
mihai1233-Jun-08 23:52
mihai1233-Jun-08 23:52 
GeneralRe: delete a folder Pin
krmed4-Jun-08 0:40
krmed4-Jun-08 0:40 
AnswerRe: delete a folder Pin
ThatsAlok4-Jun-08 0:54
ThatsAlok4-Jun-08 0:54 
AnswerRe: delete a folder Pin
Hamid_RT4-Jun-08 21:05
Hamid_RT4-Jun-08 21:05 
QuestionListView OwnerDraw Pin
john56323-Jun-08 20:33
john56323-Jun-08 20:33 
AnswerRe: ListView OwnerDraw Pin
Akt_4_U3-Jun-08 20:43
Akt_4_U3-Jun-08 20:43 
GeneralRe: ListView OwnerDraw Pin
john56323-Jun-08 21:04
john56323-Jun-08 21:04 
GeneralRe: ListView OwnerDraw Pin
sudhir_Kumar3-Jun-08 21:22
sudhir_Kumar3-Jun-08 21:22 
GeneralRe: ListView OwnerDraw Pin
Akt_4_U3-Jun-08 21:44
Akt_4_U3-Jun-08 21:44 
AnswerRe: ListView OwnerDraw Pin
Hamid_RT4-Jun-08 21:04
Hamid_RT4-Jun-08 21:04 
QuestionWhich macro to use for making a dll Pin
prithaa3-Jun-08 20:14
prithaa3-Jun-08 20:14 
AnswerRe: Which macro to use for making a dll Pin
Cedric Moonen3-Jun-08 20:17
Cedric Moonen3-Jun-08 20:17 
AnswerRe: Which macro to use for making a dll Pin
sudhir_Kumar3-Jun-08 21:10
sudhir_Kumar3-Jun-08 21:10 
GeneralRe: Which macro to use for making a dll Pin
prithaa3-Jun-08 22:25
prithaa3-Jun-08 22:25 

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.