https://github.com/luispedro/android-fuse
Mount an android device using FUSE
https://github.com/luispedro/android-fuse
Last synced: about 1 year ago
JSON representation
Mount an android device using FUSE
- Host: GitHub
- URL: https://github.com/luispedro/android-fuse
- Owner: luispedro
- Created: 2016-01-05T18:05:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-11T13:05:14.000Z (over 9 years ago)
- Last Synced: 2025-04-09T17:11:28.804Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android-fuse
Mounts an android device using FUSE.
Requires [fusepy](https://github.com/terencehonles/fusepy) and that `adb` be
present in the PATH.
This works by calling `adb shell ls` and `adb pull` to get information/data.
Usage:
python android-fuse.py
THIS IS ALPHA SOFTWARE AND MAY DO BAD THINGS TO YOUR PHONE, INCLUDING
DESTROYING DATA!
A file called `tmpfile.tmp` will appear in the working directory (and will be
removed later unless there is a crash). Do not remove it or mess with it while
the program is running.
# What works & what does not
- You list directories and 'cd' into them
- You can read files from the phone, including symlinks
- `du -sh somefile.txt` will work as expected
- You can delete files from the phone
- Creating files and directories is not implemented
- Files with spaces do not work
Licence: MIT
Author: [Luis Pedro Coelho](http://luispedro.org) [luis@luispedro.org](mailto:luis@luispedro.org)