mpy-repl-tool icon indicating copy to clipboard operation
mpy-repl-tool copied to clipboard

FUSE: Renaming doesn't

Open smurfix opened this issue 3 years ago • 1 comments

/mnt/py$ touch x
/mnt/py$ mv x y
mv: cannot move 'x' to a subdirectory of itself, 'y'
/mnt/py$ 

results in:

Uncaught exception from FUSE operation rename, returning errno.EINVAL.
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/fusepy.py", line 734, in _wrapper
    return func(*args, **kwargs) or 0
  File "/usr/lib/python3/dist-packages/fusepy.py", line 805, in rename
    return self.operations('rename', old.decode(self.encoding),
  File "/usr/lib/python3/dist-packages/fusepy.py", line 1076, in __call__
    return getattr(self, op)(*args)
  File "/home/smurf/src/mpy-repl-tool/there/fuse_drive.py", line 117, in rename
    return self._remote(old).rename(new)
  File "/home/smurf/src/mpy-repl-tool/there/repl_connection.py", line 410, in rename
    self._repl.evaluate(f'import os; print(os.rename({self.as_posix()!r}, {path_to.as_posix()!r}))')
AttributeError: 'str' object has no attribute 'as_posix'

smurfix avatar Apr 13 '21 14:04 smurfix

Client is the current micropython snapshot on ESP32.

smurfix avatar Apr 13 '21 14:04 smurfix