成都新答卷图表丨跟上成都步伐 看如何加快构建具有全球竞争优势的产业生态圈
First run CHKDSK to fix disk errors, 1. Run command prompt as an administrator and execute chkdsk C: /f /r; 2. Use the graphical error checking tool to scan the drive; 3. Enter safe mode to try to delete folders; 4. Use disk to clean and delete temporary files; 5. Get folder ownership to resolve permissions; 6. Forced deletion in command prompt through the rd /s /q command; 7. Detect hardware status and troubleshoot bad channels; 8. Run sfc /scannow and DISM to repair system files; usually combine CHKDSK, permission reset and command line deletion to solve this problem.
Error code 0x80070570 in Windows — "The file or directory is corrupted and unreadable" — typically appear when trying to delete, access, or move a folder. It often points to file system corruption, bad sectors on the drive, or issues with how the file metadata is stored. Here's how to fix it when you can't delete a folder.

1. Run CHKDSK (Check Disk)
This is the most effective first step. CHKDSK scans and repairs disk errors.
- Open Command Prompt as Administrator :
- Press
Win X
→ Choose Terminal (Admin) or Command Prompt (Admin) .
- Press
- Type the command:
chkdsk C: /f /r
Replace
C:
with the drive letter where the folder is located.-
/f
fixes errors. -
/r
locates bad sectors and recovers readable info.
-
- If the drive is in use, you'll be prompted to run it on the next restart. Press
Y
, then restart your PC.
Wait for the scan to complete — it may take a while.
2. Use the Built-in Error Checking Tool
Alternative GUI method for CHKDSK:

- Open This PC .
- Right-click the drive → Properties → Tools tab.
- Under Error checking , click Check .
- Click Scan drive (or “Scan and repair drive”).
Let it finish and restart if needed.
3. Boot into Safe Mode and Delete the Folder
Sometimes background processes lock the folder.
- Restart into Safe Mode :
- Hold
Shift
while clicking Restart . - Go to Troubleshoot → Advanced Options → Startup Settings → Restart .
- Press
F4
for Safe Mode.
- Hold
- Once in Safe Mode, try deleting the folder manually.
4. Use Disk Cleanup
Corrupted system files or temp files might be interfering.
- Open Disk Cleanup (search in Start).
- Select the drive → Check all temporary and system files.
- Click Clean up system files (to include Windows Update files, etc.).
- Confirm and delete.
Then try deleting the folder again.
5. Take Ownership of the Folder
You might lack permissions.
- Right-click the problem folder → Properties → Security → Advanced .
- Next to Owner , click Change .
- Enter your username → Check Names → OK.
- Check Replace owner on subcontainers and objects .
- Click Apply → OK.
- Now try deleting the folder.
If you can't access Properties, use Command Prompt:
takeown /f "C:\path\to\folder" /r /dy icacls "C:\path\to\folder" /grant administrators:F /tThen try deletion.
6. Use Command Prompt to Delete
Bypass the GUI entirely.
- Open Command Prompt (Admin) .
- Run:
rd /s /q "C:\path\to\folder"
-
rd
= remove directory -
/s
= delete with contents -
/q
= quiet mode (no confirmation)
-
This often works when Explorer fails.
7. Check for Hardware Issues
If the error persists across reboots and tools:
- The drive may have bad sectors .
- Run a hardware diagnostic:
- Use your drive manufacturer's tool (eg, SeaTools for Seagate, WD Drive Utilities).
- Or use
wmic diskdrive get status
in CMD (should say "OK").
Consider backing up data and replacing the drive if hardware failure is suspected.
8. Scan for System File Corruption
Run SFC and DISM to rule out OS-level corruption.
In Admin Command Prompt:
sfc /scannow
Then:
DISM /Online /Cleanup-Image /RestoreHealth
Restart after completion.
Final Notes
- Backup important data first if the drive is still readable.
- Avoid forcing deletion with third-party unlockers unless necessary.
- If the folder is from an interrupted copy/download, it may be structurally invalid.
Fixing 0x80070570 usually comes down to CHKDSK permissions command-line deletion . Most cases resolve with those steps.
Basically, start with chkdsk
, take ownership, then use rd /s /q
. That combo handles 90% of these issues.
The above is the detailed content of how to fix win error code 0x80070570 when deleting a folder. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

How to solve win10651 broadband connection error? In win10, when the system is connected to the Internet, many users encounter network problem 651 and try to reconnect, but do not get a good solution, so today I bring you the steps to solve the win10651 broadband connection error, come and learn. Win10651 broadband connection error solution steps 1. First, right-click the properties of this computer on the desktop. 2. Then click Device Manager in the taskbar on the left side of the properties interface. 3. Pull down to find the network adapter, then open it. Right-click your network and select Disable Device 4. , click Yes & in the pop-up window, then right-click the network again and click Use 5. Finally, click Operations in the taskbar and click Scan to detect hardware changes. The system will then reboot.

There are many different system permissions in the operating system we use. Different permissions can use different functions. So what should I do if I encounter a prompt that administrator permissions are required when deleting a folder? Let’s see how I solved it below! With the continuous upgrade and update of win10, more and more friends are starting to use win10. So what should I do if I am prompted to delete a folder and require administrator rights? Don’t worry, the editor will tell you what to do if you need permission to delete a folder in Win10. What to do if you need permission to delete a folder in win10 1. Right-click the folder that cannot be deleted and select Properties to open it. Switch to the [Security] option in the opened interface and click the [Advanced] button. System permissions Figure-12. In advanced security settings

When many users use computers, the system prompts that Windows cannot find the file. Please make sure the file name is correct and try again. What is going on? It may be that there is a problem with the computer software and you need to open misconfig or regedit. Let’s modify it. Let’s take a look at the specific method below. Methods to solve the problem of file not found in win10: 1. First press WIN+R on the keyboard to open Run, then we enter in the search bar: "cmd/cfor%iin(%windir%\system32\*.dll)doregsvr32. exe/s%i" and click OK. 2. Open the runner again, and then enter in the search bar: "

Title: Methods and techniques for deleting folders in Golang When developing projects using Golang, file and folder operations are often involved. Among them, deleting a folder is a common operation. This article will introduce how to delete a folder in Golang as well as some tips and precautions. Method 1: Use os.RemoveAll() function packagemainimport("os")funcmain(){

What should I do if the application is still there after forcibly deleting the folder in win11? When we use the computer, we always encounter some very annoying files that cannot be deleted even if they are deleted, and can only be forced to be deleted. However, some users find that the application or software is still there after forcibly deleting files, so what is going on? Let this site give users a detailed introduction to the detailed explanation of the application or software that is still there after forcibly deleting the folder in win11. Bar. Detailed explanation of the application still persisting after forcibly deleting the folder in Win11

Removeinvaliddrivemappingsusingnetusecommandtodeletenon-existentnetworkorexternaldrives.2.CheckDiskManagementformissing,offline,oruninitializeddrivesandremovetheirdriveletterassignments.3.Resetorre-linkOneDriveifitreferencesamissingdrivebyusingonedri

0x80070017 error is usually caused by data corruption, hardware failure or installation media problems. The solutions are as follows: 1. Use Microsoft's official MediaCreationTool to re-create the boot USB disk and replace the USB disk test; 2. Run Windows memory diagnostics or MemTest86 to detect RAM, use chkdsk or manufacturer tools to check the health status of the hard disk, and if it is damaged, it needs to be replaced; 3. Re-download ISO from Microsoft's official website and check the SHA-256 hash value to ensure the complete installation source; 4. Enter BIOS to turn off overclocking, fast boot and secure boot; 5. Update the motherboard BIOS to the latest version, restore the default settings, and confirm the UEFI/GPT or Legacy/MBR mode matching

First run Windows update troubleshooter, then execute sfc/scannow and DISM/Online/Cleanup-Image/RestoreHealth to repair the system files. If the problem remains the same, reset the SoftwareDistribution folder and clear the Store cache (wsreset.exe), check for disk errors (chkdskC:/f/r), and use Windows installation media for in-depth repairs when necessary. In most cases, it can solve the 0x8007000d error without data loss.
