gamemaster406
Charter Member
There are some typos so the bat file does not run properly.
does not exist
the actual path is
does not exist
the actual path is
Also RMDIR /s /q "your\path" should be used instead of del /s /f /q "your\path\*.*" because del does NOT remove subdirectories. And since the subdirectories will be left behind, RMDIR will not remove them without /s. The way the current bat file is set up is that the directories will not be properly removed.
See here
Code:
"aircraft\DR_Engine_Sounds\BR_Engine_Napier_Sabre_24_cylinder_open_pit\Sound\sound"
the actual path is
Code:
"aircraft\DR_Engine_Sounds\BR_Engine_Napier_Sabre_24_cylinder_open_pit\BR_Engine_Napier_Sabre_24_cylinder_open_pit\Sound"
Code:
"aircraft\W40_H75A3"
the actual path is
Code:
"aircraft\w40_H75A3"
Also RMDIR /s /q "your\path" should be used instead of del /s /f /q "your\path\*.*" because del does NOT remove subdirectories. And since the subdirectories will be left behind, RMDIR will not remove them without /s. The way the current bat file is set up is that the directories will not be properly removed.
See here