Can't Create New Folder – Access Denied on External Drive

You plug in an external drive, try to make a new folder, and Windows says access denied. The fix is usually permissions or bitlocker.

So you plug in your external hard drive – maybe a Seagate Backup Plus or a WD My Passport – and when you right-click to create a new folder, Windows throws up Access Denied. This isn't the typical "you need admin rights" thing. It happens even if you're the admin. I've seen this on everything from Windows 10 22H2 to Windows 11 23H2. The real trigger is usually one of two things: the drive's formatted as exFAT (which sometimes bugs out with folder creation) or it's encrypted with BitLocker and the protection state is messed up.

Why It Happens

Root cause is almost always a permission mismatch. When you plug in an external drive, Windows applies a default permission set. If that set doesn't give you full control, you can't create folders. But there's another common culprit: BitLocker. If the drive was encrypted on another PC and you didn't unlock it properly, Windows blocks write operations. And sometimes it's just the file system – exFAT drives that were used on a Mac or a camera can get sticky with Windows folder creation.

Skip the "run as administrator" or "reboot" stuff – they rarely help here. The fix is straight up permission changes or turning off BitLocker's write protection.

The Fix

  1. Check if BitLocker is involved. Open Command Prompt as admin (cmd right-click -> Run as administrator). Type manage-bde -status E: (replace E with your drive letter). If it says "Protection On" and "Locked", that's your problem. Run manage-bde -unlock E: -RecoveryPassword YOUR-RECOVERY-KEY (you'll need the key from your Microsoft account or backup). Then try creating the folder again.
  2. Take ownership of the drive. If BitLocker isn't the issue, permissions are. Open File Explorer, right-click the drive -> Properties -> Security tab -> Advanced. Click "Change" next to Owner. Type your username (like "Marcus"), click Check Names to verify, then OK. Check "Replace owner on subcontainers and objects". Apply. Wait for it to finish. Then go back to Security tab, click your username, check "Full Control". Apply again.
  3. Force a permission reset via command line. If steps 1 and 2 don't work, open Command Prompt as admin and run icacls E:* /grant Everyone:F /T /Q. This gives full control to Everyone on all files and subfolders. It's brute force but it works. Don't do this on your C drive – only on external drives you own.

If It Still Fails

If you're still getting access denied after these steps, check the drive's file system. Right-click the drive -> Properties -> General tab. If it shows exFAT, consider reformatting to NTFS. Warning: this erases all data. Backup what you can first. In File Explorer, right-click drive -> Format -> choose NTFS, quick format. After that, folder creation always works on NTFS. If you can't backup, try using chkdsk E: /f to fix file system corruption – sometimes that clears the issue.

One last weird thing: some drives have a physical write-protect switch. Look on the casing – if there's a little slider, make sure it's slid to "unlock" or "write". I've wasted 30 minutes on that before. Don't be me.

If none of this works, the drive hardware might be failing. Check it with CrystalDiskInfo – if it shows yellow or red warnings, replace the drive. You can't fix hardware with permissions.

Related Errors in Hardware – Hard Drives
0XC000022E STATUS_FOUND_OUT_OF_SCOPE (0XC000022E) – Real Fixes 0XC00D1162 Fix 0xC00D1162: No DVD Subtitles or Menu Highlights in Windows Media Player 0X80030306 Fix STG_E_CSS_AUTHENTICATION_FAILURE 0X80030306 DVD Error 0x8007051D External Drive I/O Error 0x8007051D: Real Fixes That Work

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.