Class t.v.b.i.FakeDirectory(_FakeNode):

Part of twisted.vfs.backends.inmem View Source View In Hierarchy

Implements interfaces: twisted.vfs.ivfs.IFileSystemContainer
In-memory directory.
Method __init__ Undocumented
Method children returns a list of 2 element tuples
Method child Returns a node object for child childName
Method getMetadata Undocumented
Method createFile Creates a new file named childName under this folder.
Method createDirectory Creates a new folder named childName under this folder.
Method exists returns True if container has a child childName, False otherwise

Inherited from _FakeNode:

Method create Undocumented
Method remove Undocumented
Method rename Undocumented
def __init__(self, name=None, parent=None, children=None): (source)
Undocumented
def children(self): (source)
returns a list of 2 element tuples [ ( path, nodeObject ) ]
def child(self, childName): (source)
Returns a node object for child childName

@raises NotFoundError if no child with that name exists.
def getMetadata(self): (source)
Undocumented
def createFile(self, childName, exclusive=False): (source)

Creates a new file named childName under this folder.

If exclusive is True (the default), an AlreadyExistsError is raised if the file already exists.
def createDirectory(self, childName): (source)
Creates a new folder named childName under this folder. An error is raised if the folder already exists.
def exists(self, childName): (source)
returns True if container has a child childName, False otherwise
API Documentation for twisted, generated by pydoctor.