Creating A Temporary File In Python With Fuse
I am trying to write a program using python-fuse, but I can't get file writing down. my file_class looks like this class FuseFile(object): def __init__(self, path, flags, *mode):
Solution 1:
I eventually found out that the probelm was that I hadn't created a open(), or create() method in my file class, but eventually I settled with implementing all the methods in the main FUSE class because the file_class didn't seem to be working for me
Post a Comment for "Creating A Temporary File In Python With Fuse"