On 3/04/2012 12:20, Todd Vargo wrote:
> On 4/2/2012 5:36 PM, Robert Roland wrote:
>> On Wed, 28 Mar 2012 12:09:28 -0700 (PDT), JJ<
jim.m...@gmail.com>
>> wrote:
>>
>>> Is there a simple way to delete all files of a given extension, except
>>> for some file(s) designated by name? Something like
>>>
>>> delete *.log /e:error.log
>>
>> attrib +h error.log
>> del *.*
>> attrib -h error.log
>>
>> It's not the neatest solution, but it might be acceptable in your
>> application.
>>
>> The old 4Dos/Ndos command interpreters have an "except" command. It
>> works just like this.
>
> ehh, del *.log
>