I have some files with 'impossible filenames'. I'm not talking about special characters or anyting, but really impossible ones. (filesystem NTFS)
One file is called images\receipt.jpg (yes, this is just the filename, not a path+filename)
another is called ..\..\data\
another is called "\n" (a single newline, escaped so you can see it here)
They are created by Ubuntu, when I saved/moved files with my Windows-mind (I don't know how the third one is created). I don't have any Linux or live-CD anymore.
I've tried every suggestion in previously asked questions, but maybe something new is possible since 2 years ago.
CHKDSK /F /X doesn't work
Using the 8.3 filename doesn't work (there are no 8.3 filenames for these files)
REN doesn't work
RD /S doesn't work
7-Zip doesn't work
I can't even defrag the disk because the defragmenter trips when it encounters these files during analyzing.
I tried programming my own rename function, but without low-level system calls (kernel32 defrag api comes to mind, but is too dangerous to just try), it keeps ordering path elements by '\' characters, so it can't find "receipt.jpg" in folder ~~/"images/", etc.
Is there any program that I can use to rename/delete them? Perhaps something like PCTools (20yo DOS program) that can 'edit' the sectors like a Hex editor?