vote up 0 vote down star

I work with multiple projects and I want to recursively delete all folders with the name 'bin' or 'obj'. That way, I am sure that all projects will rebuild everyhing (sometimes it's the only way to force visual studio to forget all about previous builds).

Is there a quick way to accomplish this (with a bat file for example) without having to write a .net program?

flag

69% accept rate

8 Answers

vote up 1 vote down check

something like this should work in a batch file - just please run it somewhere safe first to test it!

FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"

Personally I would rather use the msbuild command line clean method to do this though

link|flag
thx for your answer. I get an error: %%G was unexpected at this time. – MichaelD Apr 16 at 12:32
Hmm that's odd - it works fine on my machine (vista 64bit business) - I'll try it on an xp machine too. – Steve Willcock Apr 16 at 12:53
Works ok for me on XP professional too - ah well :) – Steve Willcock Apr 16 at 12:55
allright i got it to work. one strange issue is that when there is a bin folder in the root he doesn't delete anything. but that doesn't matter – MichaelD Apr 16 at 13:24
have you got any idea how i let the script search in a folder other than it's running from? – MichaelD Apr 16 at 14:18
show 1 more comment
vote up 4 vote down

Is 'clean' not good enough? Note that you can call msbuild with /t:clean from the command-line.

link|flag
In my experience, "clean" is often not good enough. – Joel in Gö Apr 16 at 9:49
indeed. sometimes it's necessary to delete those folders – MichaelD Apr 16 at 12:33
vote up 0 vote down

I think you can right click to your solution/project and click "Clean" button.

As far as I remember it was working like that. I don't have my VS.NET with me now so can't test it.

link|flag
vote up 0 vote down

On our build server, we explicitly delete the bin and obj directories, via nant scripts.

Each project build script is responsible for it's output/temp directories. Works nicely that way. So when we change a project and add a new one, we base the script off a working script, and you notice the delete stage and take care of it.

If you doing it on you logic development machine, I'd stick to clean via Visual Studio as others have mentioned.

link|flag
sometimes i just have to be sure that all builds are completely new. I can't trust clean solution for doing that.deleting bin and obj has often proven more reliable – MichaelD Apr 16 at 12:36
For us, only builds from the 'build machine' are tested, or used in production, so the developers don't have must be 'all clean' type issues, and the build server does that. Also means no one developer is needed to make a full build. – Simeon Pilgrim Apr 16 at 20:45
vote up 0 vote down

I actually hate obj files littering the source trees. I usually setup projects so that they output obj files outside source tree. For C# projects I usually use

 <IntermediateOutputPath>..\..\obj\$(AssemblyName)\$(Configuration)\</IntermediateOutputPath>

For C++ projects

 IntermediateDirectory="..\..\obj\$(ProjectName)\$(ConfigurationName)"
link|flag
vote up 0 vote down

We have a large .SLN files with many project files. I started the policy of having a "ViewLocal" directory where all non-sourcecontrolled files are located. Inside that directory is an 'Inter' and an 'Out' directory. For the intermediate files, and the output files, respectively.

This obviously makes it easy to just go to your 'viewlocal' directory and do a simple delete, to get rid of everything.

Before you spent time figuring out a way to work around this with scripts, you might think about setting up something similar.

I won't lie though, maintaining such a setup in a large organization has proved....interesting. Especially when you use technologies such as QT that like to process files and create non-sourcecontrolled source files. But that is a whole OTHER story!

link|flag
vote up 0 vote down

http://vsclean.codeplex.com/

Command line tool that finds Visual Studio solutions and runs the Clean command on them. This lets you clean up the /bin/* directories of all those old projects you have lying around on your harddrive

link|flag
vote up 1 vote down

I use to always add a new target on my solutions for achieving this.

    <Target Name="clean_folders">
    	<RemoveDir Directories=".\ProjectName\bin" />
    	<RemoveDir Directories=".\ProjectName\obj" />
    	<RemoveDir Directories="$(ProjectVarName)\bin" />
    	<RemoveDir Directories="$(ProjectVarName)\obj" />
    </Target>

And you can call it from command line

msbuild /t:clean_folders

This can be your batch file.

msbuild /t:clean_folders
PAUSE
link|flag

Your Answer

Get an OpenID
or

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