Re: directory mng.
- Posted by "Greg Haberek" <ghaberek at gmail.com> Jul 10, 2006
- 599 views
> system("del >nil /q temp\\*.*",2) You'll want to put the redirection last, and the options after the directory. Also, the direction is NUL not nil. And don't forget to quote your path names. The correct format would be: "del \"temp\\*.*\" /q > NUL"