User Sebastian Edelmeier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T13:17:29Zhttp://stackoverflow.com/feeds/user/132168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/1073283#10732830Answer by Sebastian Edelmeier for NUnit [TearDown] fails -- what process is accessing my files?Sebastian Edelmeier2009-07-02T09:04:25Z2009-07-02T09:04:25Z<p>Thanks for pointing this out!</p>
<p>The problem is not related to SQLite, but rather to memory management in general. After your test has run, the objects pointing to files have no scope anymore, but they still exist in memory.</p>
<p>Hence, there's still references to the files and you can't delete / move them.</p>