Hi Barry, I use MailWasher myself and like the program - although I never bounce email - just delete it.
If I were writing that batch file and just wanted to delete the files, I would do this: @echo off cls c: cd \ if exist socket~*.txt for %%f in (socket~*.txt) do del socket~*.txt @echo on exit Regards, Roger Williams >Date: Mon, 21 Jan 2002 20:44:53 -0600 >From: Barry Aronson <[EMAIL PROTECTED]> >Subject: PCWorks: Need assistance with an impending Batch Script > >My intention is to create a script to move those files to the >C:\windows\temp folder and let the Maintenance Wizard execute the batch >script a few times a day. My problem is as follows: the files are called >socketlogn.txt. The "n" is equal to a consequent number with no limit to >the flow. So I do not know what to call the files if they are all named >differently based on number. > >Does anyone know what I could possibly do. Using Win98SE and all I want is >to create a simple batch file something like this: echo off ============= PCWorks Mailing List ================= Don't see your post? Check our posting guidelines & make sure you've followed proper posting procedures, http://pcworkers.com/rules.htm Contact list owner <[EMAIL PROTECTED]> Unsubscribing and other changes: http://pcworkers.com =====================================================
