Date: Sat, 28 Mar 1998 10:57:49 +0000 (GMT) From: Travis Siegel To: Gene Kwatny cc: opendos-support AT delorie DOT com Subject: Re: File Names with Spaces In-Reply-To: <351CECCA.889A781@joda.cis.temple.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sat, 28 Mar 1998, Gene Kwatny wrote: > Can anyone suggest a straightforward method to delete files whose names > have embedded spaces in DOS with no long file name support (i.e standard > 8.3 notation). Yep, sure can. Assuming the file is something like "1 2 3" then to delete it, all you need to do is something like; del 1?2?3 Just place a question mark where the spaces are, and it'll happ9ily disappear. :) Hope this helps.