afero
afero copied to clipboard
A FileSystem Abstraction System for Go
Rclone
Added Rclone virtual filesystem with the full functionality of afero and afero.Fs functions available in rclone.
This method is still a TODO after 6 years despite being a simple delegate, i don't think i missed any real reason why it wasn't implemented but i could be...
- x/crypto - CVE-2020-9283, improper signature verification - x/crypto - CVE-2020-29652, nil pointer dereference - x/text - out of bounds read in
Fix issue where OpenFile fails incorrectly trying to open an existing file with O_EXCL in memmap fs.
Basic scenario doesn't work. 1. Create a file with os.O_CREATE|os.O_RDWR|os.O_EXCL and close it 2. Try to reopen the file with os.O_RDWR|os.O_EXCL Result: file exists error Expected: reopen should succeed See...
This PR fixes https://github.com/spf13/afero/issues/185 Fix the infinite recursion by skipping the current directory in the directory names listing
Doing `fs.Open("c:\\")` or `afero.Walk` from root on a MemMapFs in a windows system returns the error `open c:\: file does not exist`. During debugging, I found that the `getData()` function...
Hi. I am trying to read large file(original size ~41G) inside a zip file but got the following issue: ``` runtime: VirtualAlloc of 5471715328 bytes failed with errno=1455 fatal error:...
I have run the following test on Windows with attached valid zip file [testunzip.zip](https://github.com/spf13/afero/files/12196655/testunzip.zip) and I am getting the following errors `readdir \: The system cannot find the file specified.`...
* Added dependabot to keep go dependencies & actions updated.