Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nunit Shadow Copy Cache Directory is Huge

I've noticed a huge amount of disk space being used recently and finally did some investigating. I found out that I have over 200 GB in the following directory:

C:\Users\compUser\AppData\Local\Temp\nunit20\ShadowCopyCache

Should I delete this data directly? Or is there a function in NUnit to do some sort of clean up for this Shadow Copy Directory that automates this process and doesn't have the potential to break anything?

Updating based on answer:

Open your favorite command prompt application, navigate to the NUnit directory and run the following command:

nunit.exe /cleanup

Depending how large the Shadow Cache is, it could take some time to finish.

like image 915
5StringRyan Avatar asked Aug 30 '11 16:08

5StringRyan


1 Answers

A new /cleanup commandline option deletes NUnit's shadow copy cache and then exits.

See here (Nunit release notes) for additional information.

This is a safe and supported delete of this directory.

like image 191
Bob2Chiv Avatar answered Sep 25 '22 19:09

Bob2Chiv