ReactOS 0.4.16-dev-2216-ga08d639
CRecycleBin.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CRecycleBin
 

Functions

BOOL TRASH_CanTrashFile (LPCWSTR wszPath)
 
BOOL TRASH_TrashFile (LPCWSTR wszPath)
 
HRESULT CRecyclerDropTarget_CreateInstance (REFIID riid, LPVOID *ppvOut)
 

Function Documentation

◆ CRecyclerDropTarget_CreateInstance()

HRESULT CRecyclerDropTarget_CreateInstance ( REFIID  riid,
LPVOID ppvOut 
)

Definition at line 183 of file CRecyclerDropTarget.cpp.

184{
185 return ShellObjectCreator<CRecyclerDropTarget>(riid, ppvOut);
186}
REFIID riid
Definition: atlbase.h:39

Referenced by CRecycleBin::CreateViewObject(), and CDefaultContextMenu::DoDelete().

◆ TRASH_CanTrashFile()

BOOL TRASH_CanTrashFile ( LPCWSTR  wszPath)

Tests whether a file can be trashed

Parameters
wszPathPath to the file to be trash
Returns
TRUE if the file can be trashed, FALSE otherwise

Definition at line 1152 of file CRecycleBin.cpp.

1153{
1154 LONG ret;
1155 DWORD dwNukeOnDelete, dwType, VolSerialNumber, MaxComponentLength;
1156 DWORD FileSystemFlags, dwSize, dwDisposition;
1157 HKEY hKey;
1158 WCHAR szBuffer[10];
1159 WCHAR szKey[150] = L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\BitBucket\\Volume\\";
1160
1161 if (wszPath[1] != L':')
1162 {
1163 /* path is UNC */
1164 return FALSE;
1165 }
1166
1167 // Copy and retrieve the root path from get given string
1168 WCHAR wszRootPathName[MAX_PATH];
1169 StringCbCopyW(wszRootPathName, sizeof(wszRootPathName), wszPath);
1170 PathStripToRootW(wszRootPathName);
1171
1172 // Test to see if the drive is fixed (non removable)
1173 if (GetDriveTypeW(wszRootPathName) != DRIVE_FIXED)
1174 {
1175 /* no bitbucket on removable media */
1176 return FALSE;
1177 }
1178
1179 if (!GetVolumeInformationW(wszRootPathName, NULL, 0, &VolSerialNumber, &MaxComponentLength, &FileSystemFlags, NULL, 0))
1180 {
1181 ERR("GetVolumeInformationW failed with %u wszRootPathName=%s\n", GetLastError(), debugstr_w(wszRootPathName));
1182 return FALSE;
1183 }
1184
1185 swprintf(szBuffer, L"%04X-%04X", LOWORD(VolSerialNumber), HIWORD(VolSerialNumber));
1186 wcscat(szKey, szBuffer);
1187
1188 if (RegCreateKeyExW(HKEY_CURRENT_USER, szKey, 0, NULL, 0, KEY_READ | KEY_WRITE, NULL, &hKey, &dwDisposition) != ERROR_SUCCESS)
1189 {
1190 ERR("RegCreateKeyExW failed\n");
1191 return FALSE;
1192 }
1193
1194 if (dwDisposition & REG_CREATED_NEW_KEY)
1195 {
1196 /* per default move to bitbucket */
1197 dwNukeOnDelete = 0;
1198 RegSetValueExW(hKey, L"NukeOnDelete", 0, REG_DWORD, (LPBYTE)&dwNukeOnDelete, sizeof(DWORD));
1199 /* per default unlimited size */
1200 dwSize = -1;
1201 RegSetValueExW(hKey, L"MaxCapacity", 0, REG_DWORD, (LPBYTE)&dwSize, sizeof(DWORD));
1202 }
1203 else
1204 {
1205 dwSize = sizeof(dwNukeOnDelete);
1206 ret = RegQueryValueExW(hKey, L"NukeOnDelete", NULL, &dwType, (LPBYTE)&dwNukeOnDelete, &dwSize);
1207 if (ret != ERROR_SUCCESS)
1208 {
1209 dwNukeOnDelete = 0;
1211 {
1212 /* restore key and enable bitbucket */
1213 RegSetValueExW(hKey, L"NukeOnDelete", 0, REG_DWORD, (LPBYTE)&dwNukeOnDelete, sizeof(DWORD));
1214 }
1215 }
1216 }
1217 BOOL bCanTrash = !dwNukeOnDelete;
1218 // FIXME: Check if bitbucket is full (CORE-13743)
1220 return bCanTrash;
1221}
#define ERR(fmt,...)
Definition: precomp.h:57
#define RegCloseKey(hKey)
Definition: registry.h:49
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
LONG WINAPI RegCreateKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
Definition: reg.c:1096
LONG WINAPI RegSetValueExW(_In_ HKEY hKey, _In_ LPCWSTR lpValueName, _In_ DWORD Reserved, _In_ DWORD dwType, _In_ CONST BYTE *lpData, _In_ DWORD cbData)
Definition: reg.c:4882
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4103
#define MAX_PATH
Definition: compat.h:34
UINT WINAPI GetDriveTypeW(IN LPCWSTR lpRootPathName)
Definition: disk.c:497
BOOL WINAPI GetVolumeInformationW(IN LPCWSTR lpRootPathName, IN LPWSTR lpVolumeNameBuffer, IN DWORD nVolumeNameSize, OUT LPDWORD lpVolumeSerialNumber OPTIONAL, OUT LPDWORD lpMaximumComponentLength OPTIONAL, OUT LPDWORD lpFileSystemFlags OPTIONAL, OUT LPWSTR lpFileSystemNameBuffer OPTIONAL, IN DWORD nFileSystemNameSize)
Definition: volume.c:226
BOOL WINAPI PathStripToRootW(WCHAR *path)
Definition: path.c:1195
#define swprintf
Definition: precomp.h:40
return ret
Definition: mutex.c:146
#define L(x)
Definition: resources.c:13
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
#define debugstr_w
Definition: kernel32.h:32
#define ERROR_FILE_NOT_FOUND
Definition: disk.h:79
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
#define KEY_READ
Definition: nt_native.h:1026
#define REG_CREATED_NEW_KEY
Definition: nt_native.h:1087
#define KEY_WRITE
Definition: nt_native.h:1034
#define LOWORD(l)
Definition: pedump.c:82
long LONG
Definition: pedump.c:60
#define REG_DWORD
Definition: sdbapi.c:615
wcscat
STRSAFEAPI StringCbCopyW(STRSAFE_LPWSTR pszDest, size_t cbDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:166
unsigned char * LPBYTE
Definition: typedefs.h:53
#define HIWORD(l)
Definition: typedefs.h:247
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define DRIVE_FIXED
Definition: winbase.h:276
#define HKEY_CURRENT_USER
Definition: winreg.h:11
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by delete_files().

◆ TRASH_TrashFile()

BOOL TRASH_TrashFile ( LPCWSTR  wszPath)

Definition at line 1224 of file CRecycleBin.cpp.

1225{
1226 TRACE("(%s)\n", debugstr_w(wszPath));
1227 return DeleteFileToRecycleBin(wszPath);
1228}
#define DeleteFileToRecycleBin
Definition: recyclebin.h:101
#define TRACE(s)
Definition: solgame.cpp:4

Referenced by delete_files().