Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / “Could Not Find This Item” While Deleting a File/Folder in Windows

February 7, 2022 Windows 10Windows 11Windows Server 2019

“Could Not Find This Item” While Deleting a File/Folder in Windows

I’ve come across an interesting error when trying to delete or rename a folder in Windows. When trying to remove a local folder using File Explorer, an error appears:

Item Not Found

Could not find this item. This is no longer located in folder_path. Verify the item’s location and try again.

cannot remove folder: Item Not Found Could not find this item. This is no longer located in folder_path. Verify the item’s location and try again.

Windows File Explorer says that the folder doesn’t exist, even though a user can open it and work with the files in it.

In Windows, this problem may occur on the NTFS-formatted drives with files or folders that have a space or a dot at the end of their names.

Open the properties of the folder (file) to make sure the properties are empty.

empty folder properties

If you open the Security tab in the folder properties, you may see the error:

The requested security information is either unavailable or can’t be displayed.

Folder Security NTFS Permissions Tab: The requested security information is either unavailable or can’t be displayed

How can you check if a folder name contains an invalid character and Windows cannot access it correctly? Open the command prompt and run this command:

dir /x c:\tools

As you can see, it is a common folder, not a symbolic link or something of the kind. But Windows has displayed another short name for it in the 8.3 (short filename) format — TESTFO~1.

8.3 (short folder name) ending with DOT or Space - Could not find this item

You can rename or delete the folder using its short name in the 8.3 format.

For example, to delete the folder, run the command below:

rd c:\tools\TESTFO~1 /s

remove folder by its 8.3-compliat name

You can also delete the folder by its full name with a space at the end using the UNC path. For example:

rd /s "\\?\c:\tools\testfolder "

To rename the folder and remove the space character at the end, run these commands:

cd c:\tools
rename TESTFO~1 TESTNEW

You won’t be able to rename or delete a folder if any files in it are used (locked) by other Windows processes. You can find and close the files using the Unlocker tool or by following this guide.

You can also rename/delete such a file or folder in Total Commander, Far, or 7ZIP file manager.

If you have 7ZIP installed, right-click the folder and select Add to archive. In the next window, check Delete files after compression and click OK. So 7ZIP will create a new archive with the folder contents and delete the source folder with the space in its name.

How to delete a folder could not find this item using 7ZIP?

2 comments
2
Facebook Twitter Google + Pinterest
previous post
How to Install Windows 11 on Unsupported Hardware (Without TPM & Secure Boot)
next post
Checking Read (Unread) Status of Emails in Exchange

Related Reading

How to Connect VPN Before Windows Logon

November 14, 2023

Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

November 7, 2023

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

2 comments

David Palmer February 21, 2022 - 8:35 pm

Thanks for this post – solved my exact error with not being able to delete a folder on a 2019 server fileshare.

Reply
Wim February 6, 2023 - 9:13 am

Thank you very much, after hours I luckily found this article. In Windows 11 my files have no 8dot3 name. I could solve it with 7Zip as you suggested

Reply

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Repair EFI/GPT Bootloader on Windows 10 or 11
  • How to Restore Deleted EFI System Partition in Windows
  • Network Computers are not Showing Up in Windows 10/11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top