PDA

View Full Version : Deleting a stubborn file


Lauren
May 22nd 04, 06:21 AM
Hi, i was wondering if anyone knew how to delete files
over 215 characters long; te file I am trying to delete
gives me errors every time I rey to do so.

Rick T
May 22nd 04, 07:14 AM
Lauren wrote:
> Hi, i was wondering if anyone knew how to delete files
> over 215 characters long; te file I am trying to delete
> gives me errors every time I rey to do so.

Try it in DOS using the abbreviated filename format


Rick

UCELibPro Richard
May 22nd 04, 07:16 PM
You might try from MSDOS mode, ie: Start, Run, type "COMMAND", enter key.
Once in dos, "attrib path\filename" or "attrib *.*"
If the file has a "r", read only, or "s", system ATTRIBute. try...
attrib -r -s filename
If still unable to clear attrib, try renaming it as a .txt file... ren filename.ext filename.txt.
Then check attrib again. then delete the file with... del filename.ext.
There are other variations of the above. Did you try to rename the file in Windows to a .txt or without any .ext, then
drag it to the recycle bin?
Good luck,

Noel Paton
May 22nd 04, 07:37 PM
The full command set is NOT available from a DOS Window - you MUST boot to
DOS with a floppy for this purpose

--
Noel Paton (MS-MVP 2002-2004, Win9x)

Nil Carborundum Illegitemi
http://www.btinternet.com/~winnoel/millsrpch.htm

Please read http://dts-l.org/goodpost.htm on how to post messages to NG's
or
http://www.microsoft.com/presspass/features/2001/Mar01/Mar27pmvp.asp
"UCELibPro Richard" > wrote in message
...
> You might try from MSDOS mode, ie: Start, Run, type "COMMAND", enter key.
> Once in dos, "attrib path\filename" or "attrib *.*"
> If the file has a "r", read only, or "s", system ATTRIBute. try...
> attrib -r -s filename
> If still unable to clear attrib, try renaming it as a .txt file... ren
filename.ext filename.txt.
> Then check attrib again. then delete the file with... del filename.ext.
> There are other variations of the above. Did you try to rename the file in
Windows to a .txt or without any .ext, then
> drag it to the recycle bin?
> Good luck,