Adapter for file-system style read access.
>>> file = File() >>> content = "This is some file\ncontent." >>> file.data = content >>> file.contentType = "text/plain" >>> FileReadFile(file).read() == content True >>> FileReadFile(file).size() == len(content) True
There are no implemented interfaces.
There are no attributes in this class.
read()
size()
There are no known subclasses.