User Sebastian Edelmeier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:17:29Z http://stackoverflow.com/feeds/user/132168 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/1073283#1073283 0 Answer by Sebastian Edelmeier for NUnit [TearDown] fails -- what process is accessing my files? Sebastian Edelmeier 2009-07-02T09:04:25Z 2009-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>