Hi
I am facing error when i try to delete a file using a batch file. For example say the file i want to delete is "C:\test\a.dll"
i get the folder "c:\test" from registry and then i try to append the file name using and delete it using the following command
del /s %WPINSTDIR%\a.dll
where i get WPINSTDIR from registry and it would be "C:\test"
however when i try to run the batch file i get a error saying network path found and this is the command that is executed. del /s "c:\test"\a.dll
By setting a environment path variable i found that the problem is with the 2 slashes in "c:\test" and the quotes. Anyway to get around this problem.
Thanks