Hi,
I want to delete files in windows from my VB application. And I don't want any prompts, asking if I want to delete those files or not. No, just delete them.
Thanks,
Best regards, Andrew
Printable View
Hi,
I want to delete files in windows from my VB application. And I don't want any prompts, asking if I want to delete those files or not. No, just delete them.
Thanks,
Best regards, Andrew
You can use the Kill command
VB Code:
Kill "C:\Temp\test.txt"
- gaffa