Merci pour les tests d'avance,
En faisant cela de quelle manière ?
je fais un test un jetant une image et elle est introuvable ...
#include <Windows.h> int main(void) { SHEmptyRecycleBin(NULL, NULL, SHERB_NOCONFIRMATION); return 0; }
#include <Windows.h> int main(void) { HRESULT log = SHEmptyRecycleBin(NULL, NULL, SHERB_NOSOUND); LPCSTR logText = (log == S_OK) ? //https://msdn.microsoft.com/fr-fr/library/c0fs4tb8.aspx "fichier supprimé" : "Aucun fichier"; MessageBox(NULL, logText, "RecycleBin", MB_OK); }
Commentaire