I'm trying to write a MSBuild Task that deletes the Obj directory and PDBs from my bin folder on my production build scripts and can't seem to get it to work right.

Does anyone have an example where they do this or similar, or a link to a simple example of removing files and a directory with MSBuild?

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

If you're looking to delete an entire directory you require the RemoveDir task:

<RemoveDir Directories="Path/To/Obj" />

And if you're wanting to delete the PDB files from bin you'll want the Delete task:

<Delete Files="Path/To/Bin/MyApp.pdb" />

Note that you cannot use wildcards in the Delete task, so if you have multiple pdb files you're have to provide an ItemGroup as an argument.

link|improve this answer
Will the remove dir work with files in it? – Chris Marisic Sep 25 '09 at 19:26
I'm not sure... The MSBuild tasks are simply wrappers around the commands. And since rmdir in windows doesn't delete the directory unless it is empty, I'm leaning towards No. – Gavin Miller Sep 25 '09 at 19:32
3  
The RemoveDir task reference page (see above) says all files and subdirectories will be deleted. – Yawar Sep 27 '09 at 2:17
I wish I could mark both of your answers because the link to the RemoveDir task showed me what was really missing was I that I didn't dereference my OutputPath property for finding the right directory. Sayeds response with the ItemGroup syntax was what I needed to do to grab all of the pdb's to delete them. Thank you both! – Chris Marisic Oct 11 '09 at 17:48
feedback

You can delete the files in those directories first and then the dir itself with

<Target Name="SomeTarget">

<ItemGroup>
    <FilesToDelete Include="Path\To\Obj\**\*"/>
</ItemGroup>

<Delete Files="@(FilesToDelete)" />

<RemoveDir Directories="Path\To\Obj\" />
</Target>
link|improve this answer
This helped me thanks alot! Sorry I couldn't mark both of your answers at the solution, I added some more in my comment above. – Chris Marisic Oct 11 '09 at 17:49
feedback

This code is so ugly it should come with an airsickness bag. ;-) But it is fast because it doesn't build a list of files to delete etc.

<Target Name="DeleteBuildFolder">
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
    <Exec Command="RmDir /S /Q &quot;$(BuildFolder)&quot;" />
</Target>

How many RmDir commands are needed? Enough so a few RmDir commands return "The system cannot find the file specified" instead of "The directory is not empty." On my machine it seems to take another RmDir if $(BuildFolder) is open in Windows Explorer. The antivirus program may affect RmDir like it occasionally does Subversion but I'd rather have blanket AV protection than (mis)manage an exclusion list.

link|improve this answer
feedback

Posting for others that might have ran into the same problem I was having.

The Delete task cannot delete readonly files, which I needed to be able to do, as when MSBuild gets latest from TFS, the files are marked as readonly. I used the EXEC command to delete readonly files:

<ItemGroup>
    <FileToDelete Include="c:\temp\fileToDelete.txt"/>
</ItemGroup>
<Exec Command="del /F /Q &quot;@(FileToDelete)&quot;"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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