I have been trying to get a batch file to work without success. I believe it is because one of the directories has a space in the middle of it's name. the qualified name is
"C:\WINNT\Internet Logs\xyzfile*.txt"
I am trying to delete some logs that another program creates.
When I use the Command Prompt window - I have no problems, but when I attempt to use a batch file - the batch file never completes. I don't get an error message.

I have tried wild cards and still can't get the batch file to work. The entire batch file is

c:
cd winnt
cd internet logs
del xyzfile*.*

Any help will be appreciated

Tom