Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!usc!julius.cs.uiuc.edu!apple!agate!darkstar!ucscb.UCSC.EDU!noesis From: noesis@ucscb.UCSC.EDU (60276000) Newsgroups: comp.os.msdos.programmer Subject: Re: Problem with del... Message-ID: <10151@darkstar.ucsc.edu> Date: 15 Dec 90 23:25:09 GMT References: <4043@uniol.UUCP> <28836@usc> Sender: usenet@darkstar.ucsc.edu Organization: University of California, Santa Cruz; Open Access Computing Lines: 14 how about a non-printing char in the name? ex ^@abc would list as "abc"; unfortunatly i don't know of anyway to change this except: 1) create a temp dir 2) move all files to the temp dir one by one (not *.*) 3) do a del *.* & the offending program will go away or -- execute a child command.com with a 32K environment do: for %i in ( *.* ) do set %i=%i & the look at the env to see if a control char is there or -- do a "dir > tmp" & look for control chars in tmp --noesis