Hey,
When i'm deleting a file with format of 'ULOG.*' it only deletes the ones in lower case, like 'ulog.*'
I know this is easy.... i'm using kill "path\ULOG.*"
Cheers,
Housey :p
Printable View
Hey,
When i'm deleting a file with format of 'ULOG.*' it only deletes the ones in lower case, like 'ulog.*'
I know this is easy.... i'm using kill "path\ULOG.*"
Cheers,
Housey :p
Option Explicit
Option Compare Text
'event code
Kill path/file
The Kill statement is not case sensitive, neither is windows for referencing a file name. You cannot have a file named TEST.txt and test.txt in the save directory. Using Kill "C:\test.*" will remove either of them (I tried it). I'm not sure why your program isn't working - are you sure the file isn't write protected, or in use ?? Is the program using the correct path/filename etc ??
Sounds fishy !!
hello,
I assure u that this is the case and to test it I copied a text doc a couple of times and renamed it ulog.txt and ULOG.txt, the lowercase on was removed.
Thx,
Housey
Hi,
Err... I made a silly mistake and ofcourse U were right :o/
/me slaps himself!
Housey