class documentation

class TemporaryFileManager(object):

View In Hierarchy

Stores the list of files to be deleted and removes them on demand.

Method __del__ Undocumented
Method __init__ Undocumented
Method Add Add file to list of files to be deleted.
Method Cleanup Delete all files marked for deletion
Method Remove Remove file from list of files to be deleted.
Instance Variable _files Undocumented
def __del__(self):

Undocumented

def __init__(self):

Undocumented

def Add(self, filename):

Add file to list of files to be deleted.

Parameters
filename:stringpath to filename to be added
def Cleanup(self):

Delete all files marked for deletion

def Remove(self, filename):

Remove file from list of files to be deleted.

Parameters
filename:stringpath to filename to be deleted
_files: list =

Undocumented