Remove found.000 folder completely

2

I'm trying to completely remove found.000 folder under Windows 8.1 on my C-drive.

I have tried a number of attempts (incl. under SafeMode), by changing its ownership (i.e. added my Username, and added Everyone with full control) unfortunately failed to remove completely (part of subfolders successfully gone), rmdir /s /q gives Assess is denied. It's stuck with one of sub-folder with attrib +S +H, oddly which is view-able only under cmd for some reasons.

Much appreciated for any ideas? Screenshot is as attached.

Screenshot

chrrrymx

Posted 2018-04-02T15:32:27.620

Reputation: 31

Try booting thru a Live Linux CD/DVD/Pen drive and when your C drive is mounted in Linux, try deleting from therein. – rajeev – 2018-04-02T16:59:36.953

Guess this would be my next level attempt, as have attempted 3rd party packages, Lockhunter & UNLOCKER per thread, but no luck!

https://superuser.com/questions/229563/how-to-delete-files-and-folders-that-cannot-be-deleted?noredirect=1&lq=1

https://superuser.com/questions/438567/cant-delete-old-windows-directory

– chrrrymx – 2018-04-02T17:06:07.253

Answers

0

The folder named "found.000" is from chkdsk, it puts these folders and files inside the folder when it finds corrupted fragments on the partition, instead of deleting them it puts them here.

Windows lists .CHK files as “recovered file fragments”. A single .CHK file can actually contain one or more complete files, fragments of a single file, or fragments of many files. unfortunately you usually won’t be able to recover much data from .CHK files.

The reason you are even seeing it is because you have "show hidden files" enabled in windows explorer. They usually aren't visable to the user.

Try manually deleting them from the command prompt with administrator privileges. Or you could just leave them, if the are small sized it isn't going to mess with anything.

If you keep on seeing new files created here, it could be a sign your hdd is starting to fail. It wouldn't be a bad idea to check it's smart status.

Tim_Stewart

Posted 2018-04-02T15:32:27.620

Reputation: 3 983

Thanks for the comprehensive response Tim,

Understood the left out found.000 folder was auto created by chkdsk, and I have backup it to external hard drive. Hence, my intention is to remove it from my OS C-drive.

The odd bit I spotted the hidden subfolder (the one caused the error, per screenshot) was only viewable under cmd, dir /a, despite that my Win explorer has always been set to Show hidden files mode. Hence I briefly mentioned it.

"Technically annoying" me is, unfortunately I've attempted the remove under SafeMode/Admin account/3rd Party packages without luck. – chrrrymx – 2018-04-02T22:36:20.243

Furthermore, I can see the issue maybe something to do with ownership security with the particular subfolder, named $Txf under found.000 per error screenshot. Its ownership & security properties don't be even changeable under cmd, with (OI)I switches, provided am on admin account.Nor having any problem with disk scan etc. You're so right about this can be ignored as now only few kb left out after my earlier "rmdir /s", but it is annoying... :( – chrrrymx – 2018-04-02T22:43:44.120

Are you able to rename them? Sometimes you can just rename it then delete. It's worth a try. – Tim_Stewart – 2018-04-02T22:53:13.053

I have indeed have tried rename and move commandline options, none of them work which is just so odd to me. I did also try to use dir /x switch to see if any weird characters contains within foldername... all before I raised my hand for Q. – chrrrymx – 2018-04-02T23:01:14.220

0

Solution on Windows 7 Pro:

I logged in as administrator and found that the OS would allow going into the "found.000" folder only by repeatedly clicking on it to open it. The OS presented a GUI message asking if I wanted permanent access.

On choosing that I did want permanent access, the "found.000" folder opened showing another folder named "dir.0000chk".

Opening the "dir.0000chk" folder it contained an ~4 Kbyte file named "ContentFile.BLOB".

I deleted the "ContentFile.BLOB" file without objection from the OS.

With the "ContentFile.BLOB" file deleted, I was then able to delete the "dir.0000chk" folder and then the "found.000" folder. Thus another hierarchical permissions issue designed into the OS.

All three items, the file and both folders, are now in the recycle bin as seperate deletable entities.

M. Alvis

Posted 2018-04-02T15:32:27.620

Reputation: 9

0

I didn't see this solution. For window 10.

I was moving some old files from an old external hard drive and thought to do a defrag on it before putting other files onto it.

Had that "imfcore.exe" found.0000 error.

When tried to run defrag by iobit (asc)

Did a restart.

I went into folder view and clicked -> "Show hidden items" <-

There were 4 folders that showed up.

I deleted them...

No more error message running defrag on it (external hd)

Good luck everyone!

user1106431

Posted 2018-04-02T15:32:27.620

Reputation: 1

-1

Normally you can't recover data of these folders; so delete everyone you can find. On linux systems just use the following command:

sudo rm --recursive /media/user1/kingston1/found*

On windows systems open a shell and use the following command:

 runas /user:Administrator cmd

This will open a new shell as another user account with more privileges. Now just remove the directory with the following command:

rmdir f:\found.000 /s /q

Remember to check the correct mount point.

Danrley Willyan

Posted 2018-04-02T15:32:27.620

Reputation: 1