Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6089807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:08:30+00:00 2026-05-23T12:08:30+00:00

I am trying to write a program using python-fuse, but I can’t get file

  • 0

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):
    debug(path)
    #debug(mode);
    self.file = tempfile.TemporaryFile(*mode);
    self.fd = self.file.fileno()
    self.path = path
def write(self, buf, offset):
    head, tail = os.path.split(self.path)
    self.file.seek(offset);
    self.file.write(buf);
    return len(buf)

def read(self, length, offset):
    file = apiCall("readfile",{"file":self.path}).read();
    slen = len(file)
    if length < slen:
        if offset + size > slen:
            size = slen - offset
        buf = file[offset:offset+size]
    else:
        buf = ''
    return file # I don't know if this buff stuff is necesarry...
def ftruncate(self, len):
    self.file.truncate(len);
def release(self, flags):
    self.file.close()
def flush(self):
    self._fflush()
def fsync(self, isfsyncfile):
    self._fflush()
    if isfsyncfile and hasattr(os, 'fdatasync'):
        os.fdatasync(self.fd)
    else:
        os.fsync(self.fd)
def _fflush(self):
    if 'w' in self.file.mode or 'a' in self.file.mode:
        self.file.flush()

but when I try and edit the file in a editor like VIM I get this:

"mnt/stuff.txt" E514: write error (file system full?)
WARNING: Original file may be lost or damaged
don't quit the editor until the file is successfully written!

[EDIT] I found the problem, I didn’t have a open method, but even so, I eventually took out the file_class to implement the methods in the main FUSE class, because that seems to work better

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:08:31+00:00Added an answer on May 23, 2026 at 12:08 pm

    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

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a secure transfer file program using Python and AES and
I'm trying to write a program that can stop and start services using SilverLight
I am trying to write a program in python or c that can debug
I'm trying to write a program to process the BSD-style process accounting file under
I'm trying to write a program that reads text from external file (string string
I'm trying to write a program in Python and I'm told to run an
I'm trying to compile a python program using jython and it's throwing below error
I am using Linux. I am trying to write a program in c that
I'm trying to write a program that reads in entries from a file into
I'm trying to write a program in Scala, that will accept SOAP-requests, get the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.