I am trying to do the following in a batch file in Windows 7:
del "./cfg/config.cfg"
del "./cfg/server_blacklist.txt"
I also tried these options:
del ./cfg/config.cfg
del ./cfg/server_blacklist.txt
del "cfg/config.cfg"
del "cfg/server_blacklist.txt"
del cfg/config.cfg
del cfg/server_blacklist.txt
Without the use of "characters" on the command line, I am informed that this parameter is incorrect.
Using "-characters", he tells me that he cannot find the path, even if it exists, including the files in it.
How can i fix this?
source
share