- Jun
- 223
- 0
Given the following file entry, del isn't able to delete the file (mind the "." at the end):
06.12.2015 13:37 167 ___A___________ DSSET-~2 dsset-sub-example.net.
del "dsset-sub.example.net."
TCC: (Sys) The system cannot find the file specified.
"D:\temp\down\xx\1\dsset-sub.example.net."
0 files deleted
The same happens with ` quoting, or ' quoting, or w/o quoting. So, resorting to short file names:
del dsset-~2
Deleting D:\temp\down\xx\1\dsset-sub.example.net.
TCC: (Sys) The system cannot find the file specified.
"D:\temp\down\xx\1\dsset-sub.example.net."
0 files deleted 1 failed
The same happens with any quoting.
Only GnuWin32's rm des the trick (note: GnuWin32 is a native port not using cygwin.dll or msys.dll).
The file name does not contain any characters above 127.
06.12.2015 13:37 167 ___A___________ DSSET-~2 dsset-sub-example.net.
del "dsset-sub.example.net."
TCC: (Sys) The system cannot find the file specified.
"D:\temp\down\xx\1\dsset-sub.example.net."
0 files deleted
The same happens with ` quoting, or ' quoting, or w/o quoting. So, resorting to short file names:
del dsset-~2
Deleting D:\temp\down\xx\1\dsset-sub.example.net.
TCC: (Sys) The system cannot find the file specified.
"D:\temp\down\xx\1\dsset-sub.example.net."
0 files deleted 1 failed
The same happens with any quoting.
Only GnuWin32's rm des the trick (note: GnuWin32 is a native port not using cygwin.dll or msys.dll).
The file name does not contain any characters above 127.