Encountering Error 0x800700ce: The Filename or Extension Is Too Long can be frustrating, especially when you’re trying to copy, move, or delete files in Windows. This error usually appears when the full path of a file—including folder names and the file name itself—exceeds the maximum path length limit of 260 characters set by Windows. Fortunately, there are several effective solutions to overcome this issue, from enabling long path support to renaming or relocating files. In this guide, we’ll walk you through step-by-step methods to fix this error and make file management smoother.

✅ Methods to Fix Error 0x800700ce
1. Enable Long Path Support in Windows
Since Windows 10 (Anniversary Update) and Windows 11, you can enable support for long paths.
- Press Win + R → type
gpedit.msc→ press Enter. - Navigate to:
Computer Configuration → Administrative Templates → System → Filesystem - Double-click Enable Win32 long paths.
- Set it to Enabled → Apply → OK.
- Restart your computer.
2. Rename Files or Folders
- Shorten the file names or folder names in the path.
- Example: Change
C:\Users\JohnDoe\Documents\Projects\Work\Reports\2025\January\FinalVersion\Drafts\VeryLongFileNameExample.txt
toC:\Users\JohnDoe\Docs\Report.txt.
3. Move Files to a Root Directory
- Cut and paste files to a folder closer to the root (like
C:\Temp) to shorten the overall path.
4. Use Command Prompt (Robust File Operations)
If File Explorer fails to delete/move the file:
- Open Command Prompt (Admin).
- Use the
robocopycommand to move or copy files:robocopy "C:\SourceFolder" "C:\DestFolder" /E /COPYALL /MOVE
Or use the del command for deleting:
del "\\?\C:\Very\Long\Path\to\File.txt"
The \\?\ prefix allows bypassing the MAX_PATH limit.
5. Use 7-Zip or WinRAR
- Compress the parent folder into a zip file.
- Move it to a shorter path.
- Extract it there.
6. Enable Long Paths via Registry (Alternative Method)
- Press Win + R → type
regedit→ press Enter. - Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem - Find or create
LongPathsEnabled(DWORD 32-bit). - Set its value to
1. - Restart your PC.
📝 Final Tips
- Always keep file and folder names short and simple.
- Enable long path support in Windows to avoid future issues.
- Use tools like robocopy or PowerShell when Explorer fails.





