我有一个简单的控制台应用程序,我试图删除一个文件夹:
Directory.Delete(folder,true);
我得到了恼人的Thumbs.db
的例外The process cannot access the file 'Thumbs.db' because it is being used by another process.
我无法更改注册表以避免缩略图在文件夹中处理
我有什么选择可以删除包含所有内容的文件夹?
感谢
答案 0 :(得分:8)
您可以使用Unlocker找出阻止它的进程。如果您无法终止该过程,则可以使用MoveFileEx在下次启动后立即将此文件或文件夹标记为已删除。
[DllImport("kernel32.dll")]
public static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName, int dwFlags);
public const int MOVEFILE_DELAY_UNTIL_REBOOT = 0x4;
//Usage:
MoveFileEx(fileName, null, MOVEFILE_DELAY_UNTIL_REBOOT);
如果您想完全禁用" Thumbs.db" -Files 的创建,您可以在注册表中将其关闭。打开注册表编辑器,导航到HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
并将NoThumbnailCache
的值设置为1
。如果此条目不存在,您只需创建它(DWORD 32
)。
对于Win7 Professional / Ultimate,条目的路径为HKEY_CURRENT_USER\Software\Microsoft\ Windows\CurrentVersion\Explorer\Advanced
,其名称为DisableThumbnailCache
。