Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to delete files in my $(TargetDir) within visual studio before building a project.

How do you have to format command line to get around this problem I am getting below? alt text

share|improve this question

4 Answers

up vote 28 down vote accepted

Try

cd $(TargetDir)
del *.tif

As jvenema pointed out, your $(TargetDir) is expanding into a path containing spaces in the folder names which is breaking the delete command.

share|improve this answer
@Eoin: It worked like a charm. thanks. – Sung Apr 20 '09 at 13:48
I observed that even if no spaces are in the dirname, separating into a 'cd' and a wildcard makes the difference between working and busted :/ – Dean Radcliffe Dec 12 '12 at 1:41

Try adding quotes around the directory.

share|improve this answer
Thanks jvenema: It seems like "quote" actually does what I thought it should do, but unfortunately I was not delete all images using a wide-card. Eoin's version worked though. – Sung Apr 20 '09 at 13:49

I ended up using rd /s /q "$(TargetDir)" to clean out the directory. As far as I know it is working.

share|improve this answer
This removes even there are subdirectories also by /q option it removes quietly. It means "remove directory command"(rd) never ask for deletion(R U Sure?). After any build if there is an existing file this way become better,thanks – Davut Gürbüz Jun 28 '12 at 10:43
This quietly removes the build target directory, $(TargetDir), and its contents. Visual Studio recreates the build directory when necessary. – George Mar 17 at 15:17

You have to write del "$(TargetDir)*.tif" because of spaces in directory path.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.