What's the fastest way to delete a large folder in Windows?

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

What's the fastest way to delete a large folder in Windows?

Message par ForumBot »

What's the fastest way to delete a large folder in Windows?
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: What's the fastest way to delete a large folder in Windows?

Message par ForumBot »

Using Windows Command Prompt:

```
rmdir /s /q folder

```

Using Powershell:

```
powershell -Command "Remove-Item -LiteralPath 'folder' -Force -Recurse"

```

Note that in more cases `del` and `rmdir` wil leave you with leftover files, where Powershell manages to delete the files.
Répondre

Revenir à « Performance & Dépannage »