我使用Recuva将文件从(我相信)FAT32 文件系统恢复到安装了 Windows 10 的 NTFS 文件系统。该文件的名称中有一个空格:The Grilling
. 在 Windows 中,我知道不允许使用带有尾随空格的文件名,但无论如何 Recuva 还是创建了它。但是,我无法重命名或删除该文件。当我尝试在 Windows 资源管理器中执行此操作时,出现错误:
我知道它的名字中有一个空格:
然后我尝试使用命令提示符重命名它。制表符完成显示文件有一个尾随空格,但它无法识别该文件:
C:\...>rename "The Grilling " "The Grilling-"
The system cannot find the file specified.
C:\...>rename "The Grilling" "The Grilling-"
The system cannot find the file specified.
C:\...>rename "\\.\\C:\\...\\The Grilling " "The Grilling-"
The system cannot find the file specified.
C:\...>rename "\\.\\C:\\...\\The Grilling" "The Grilling-"
The system cannot find the file specified.
我可以操作它的父文件夹,但我不能对文件做任何事情。如何重命名文件以便访问或删除它?
使用命令找出文件的 8.3 名称
dir /x
,然后运行del
后跟文件的 8.3 名称以删除文件。要重命名(假设文件在桌面上并且您想将其重命名为
The Grilling.avi
):