I know how to create a temporary directory in Python using tempfile.
I have though a class that encapsulates the user environment. I have also a Unit test which creates a temporary dummy user environment and populates it with some files that are used for testing. After this is done I want to clean everything up, thus removing everything from that dummy user directory (using shutils.rmtree)
I have a dummy class wrapping the original one that prevents it from getting the real user directory and returns the dummy instead. Though I'm afraid somebody might forget this and perhaps change it or completely remove the wrapper class. This might work and the developer will end up loosing everything from his/her home directory. Though this might teach him/her a good lesson, it is not acceptable.
I can check that '/tmp/' is at the path start of the user home, so that I know it's safe to delete, but that won't work with windows. As tempfile already knows how to create a directory it would be also able to tell if a directory is in the temporal area. Though I can't find out how to do it.
Any ideas?
mkdtemp()is responsible for deleting the temporary directory and its contents when done with it." – larsmans Nov 5 '12 at 13:30