aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/fuse/fuse_file.go
Commit message (Collapse)AuthorAgeFilesLines
* swarm/fuse: return amount of data written if the file exists (#15261)Darrel Herbst2017-10-091-1/+1
| | | | | | | If the file already existed, the WriteResponse.Size was being set as the length of the entire file, not just the amount that was written to the existing file. Fixes #15216
* swarm/api: FUSE read-write support (#13872)Zahoor Mohamed2017-04-121-0/+144
- Moved fuse related code in a new package, swarm/fuse - Added write support - Create new files - Delete existing files - Append to files (with limitations) - More test coverage