Windows的保留字有很多,以下只例出部分:
CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9.
刪除方法如下:
由于windows的保護(hù)機(jī)制,用右鍵菜單里面的刪除是刪除不了這些文件的。因而需要使用命令行工具進(jìn)行刪除。
1、首先打開cmd,或者在文件目錄所在位置按住shift,然后點(diǎn)擊鼠標(biāo)右鍵,點(diǎn)擊在此處打開powershell窗口就可以了。
2、比如說我的文件路徑為
C:\Users\HonorVan\Desktop\NequickG-master\aux.py
,那么使用命令行刪除的命令為:del \\.\C:\Users\HonorVan\Desktop\NequickG-master\aux.py
這時(shí)候我的會(huì)報(bào)錯(cuò),如下:
Remove-Item : 找不到接受實(shí)際參數(shù)“.C:\Users\HonorVan\Desktop\NequickG-master\aux.py”的位置形式參數(shù)。
所在位置 行:1 字符: 1
+ del \\ .C:\Users\HonorVan\Desktop\NequickG-master\aux.py
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Remove-Item],ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.RemoveItemCommand
錯(cuò)誤顯示系統(tǒng)找不到文件位置,看樣子這種方法不行,我們可以使用以上命令把整個(gè)文件夾全刪掉就行了。
具體命令為:
del \\.\C:\Users\HonorVan\Desktop\NequickG-master
同時(shí)大家也可以嘗試一些文件強(qiáng)制刪除工具,都有具備刪除保留字文件名的文件。