ON 20080429@5:12:20 PM at page: http://techref.massmind.org/techref/os/win/winnt/delcrap.htm#39567.716875 James Newton[JMN-EFP-786] Says Certain folders with special names like the names of devices or reserved names(AUX/NUL/LPT1/COM!) can be removed using a trick from the following Microsoft Knowledge base article: http://support.microsoft.com/support/kb/articles/Q120/7/16.ASP.

The article states that you can't remove files with reserved driver names (i.e AUX, CON...etc) since a check of reserved words is performed any time you perform a file/dir operation. Fortunately, another option exist to bypass the normal reserve-word checks altogether. You may access your directories via Universal Naming Convention (UNC).

Tou can possibly delete any file with a command such as:
DEL \\.\driveletter:\path\filename
For example:
DEL \\.\C:\inetpub\ftproot\com1 /S/Q
RD \\.\C:\inetpub\ftproot\com1 /S/Q