I got some folders created by malware that name ended with a dot. like C:\a.\ or C:\b.\, etc. I found a solution that can remove such folder with command rd /q /s "C:\a.\"

but if I call win API RemoveDirectory, it returns ERROR_FILE_NOT_FOUND.

And I just wonder how to write a function to delete such directory, thanks

I test on my own system windows xp sp3 like this

create a folder C:>mkdir a..\\ and I cannot double click to access this folder. and I can remove with command rd /q /s "C:\a.\"

what windows system api(s) that rd /q /s command call?

link|improve this question

50% accept rate
feedback

6 Answers

Solution: When you call RemoveDirectory, make sure that you prefix the path with the string "\\?\".


Explanation: It has everything to do with the dot. According to MSDN, there are certain cases where you may not be able to delete a file or folder on an NTFS volume, specifically when the file name is invalid in the Win32 name space (which is why you are unable to open the file using the normal methods in Windows Explorer).

You may not be able to delete a file if the file name includes an invalid name (for example, the file name has a trailing space or a trailing period or the file name is made up of a space only). To resolve this issue, use a tool that uses the appropriate internal syntax to delete the file. You can use the "\\?\" syntax with some tools to operate on these files, for example:
del "\\?\c:\path_to_file_that contains a trailing space.txt "
The cause of this issue is similar to Cause 4. However, if you use typical Win32 syntax to open a file that has trailing spaces or trailing periods in its name, the trailing spaces or periods are stripped before the actual file is opened. Therefore, if you have two files in the same folder named "AFile.txt" and "AFile.txt " (note the space after the file name), if you try to open the second file by using standard Win32 calls, you open the first file instead. Similarly, if you have a file whose name is just " " (a space character) and you try to open it by using standard Win32 calls, you open the file's parent folder instead. In this situation, if you try to change security settings on these files, you either may not be able to do this or you may unexpectedly change the settings on different files. If this behavior occurs, you may think that you have permission to a file that actually has a restrictive ACL.

(Source: http://support.microsoft.com/?kbid=320081)

link|improve this answer
feedback

Try to use unlocker program to delete files and folders that you can't delete normally.

link|improve this answer
1  
I'm curious about how can unlocker do this! – jerry.liu Nov 2 '10 at 8:05
feedback

Here's a solution to this problem:

rd /s "\\?\C:\Documents and Settings\User\Desktop\Annoying Folder."
link|improve this answer
feedback

We can create with winapi CreateDirectoryA("a..\"), and remove RemoveDirectoryA("a..\"), Indeed directory which name ends with a dot(".") is ilegal, we cannot create and access in explorer, but create and access with cmdline or winpai. Maybe it's not ownership problem but compatible(dos vs. nt) problem. It has confused my for a long time:)

link|improve this answer
feedback

I don't think the dot is the problem. Sounds like you'll need to take ownership of the folder (and subfolders) to delete it.

Otherwise, what coding language do you want to use? There's different functions for different languages.

link|improve this answer
1  
or find out what kind of malware infected your pc and use a proven software to remove these. you may corrupt your PC further, be careful. – Martin Ongtangco Nov 2 '10 at 7:57
@Martin @jerry - keyword PROVEN - I've screwed up further by using generic malware removers... – Steve Nov 2 '10 at 8:01
I use windows xp sp3, and I have to say sorry that I've made a silly mistake, the return code is ERROR_FILE_NOT_FOUND, and i've changed the description. – jerry.liu Nov 2 '10 at 8:03
feedback

When you see the name is "a.", but the actual name is "a.."

Try this:

rd /q /s "C:\a..\"

And you can try explore the folder by this code:

for /f "tokens=3 delims=<>" %%a in ('dir /ad /x "C:\*" ^| findstr " a\.\.$"') do (
  for /f "tokens=1" %%b in ("%%a") do start "" "%%~fb"
)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.