如何强制删除 baidu/tempdata/con.dat 的垃圾文件! How to fix locked SD card: 读卡器 损坏,补救措施!
如何强制删除 baidu/tempdata/con.dat 的垃圾文件! How to fix locked SD card: 读卡器 损坏,补救措施!
https://www.youtube.com/watch?v=y2c37dcxNto&feature=youtu.be
使用windows command prompt 强制删除
baidu/tempdata/con.dat (百度 con.dat )
del "\\ \D:\rubbish\baidu\tempdata\con.dat"
2.
I realize this is old, but I had this problem and didn't see a good solution already posted, so...
Background
The issue is that CON is a reserved name in Windows, so it doesn't like folders with this name. (Similar things likely happen with other reserved names like PRN.) The problem arises when you have this folder created by other operating systems where it isn't a reserved word.
Windows and Windows applications don't handle this folder well at all, so in my case, I wanted to just delete it.
Solution
You can remove this using the command line, but will want to reference the location differently than you normally would (using UNC).
If the folder is C:\documents\con, then this command entered on the command line will remove it:
rd \\.\c:\documents\con /S /Q
rd is the command line tool to remove the directory.
\\. refers to the current computer.
\c:\documents\con is the path of the offending folder entry.
/S is a switch that tells rd to remove all subdirectories and files (like the old DELTREE command).
/Q is a switch that tells rd to this removal silently (you won't be prompted for removing the contents).
Change the \c:\documents path to whatever the location is for your CON folder.
Of course, this deletes the entire folder and its contents. It may be possible to rename or copy the folder to another name. I didn't have much luck with the rename, but I also didn't spend too much time on it.
Note that although you can use Windows Explorer to browse to the location \\., Explorer doesn't let you delete the folder. You need to use the command line to remove the CON folder.
3.
用windows command prompt 强制删除 baidu/tempdata/con.dat (百度 con.dat )
if 1 doesn't work , just format your USB device by following the below steps!
1.
2.
3.
4.
5.
6.
7.
(🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!
refs
©xgqfrms 2012-2021
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/5241652.html
未经授权禁止转载,违者必究!