1.

Solve : Del and rm commands not recognized in windows 10 makefile?

Answer»

I built a makefile using my windows 7 machine, i have tried to build the project using the makefile on my windows 10 machine but run into errors

Code: [Select]Error -- del: No such file or directory
I OPENED up command prompt and the del command works, i deleted a few files using it.

Any IDEAS why i might be facing this issue, i have made sure that the i have included "C:\Windows\System32" file on my visual studioIt says NO SUCH FILE or DIRECTORY ..... Does the Target EXIST that its trying to Delete?Hi 
How did use it ? with a batch file ?
can you post what did tried as code ?del is a command INTERNAL to cmd.exe. If you are specifying del directly as a command attribute for an in a project node for MSBuild, it isn't going to work unless there is a executable or batch file available on the system path named "del". you should either use cmd /c del , or just have it run a batch file.The lack of details is once again slowing down the process.

But hey...that's the DOS section.



Discussion

No Comment Found