We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read(::FileBuffer, nb)
julia> using FilePathsBase julia> write("test.txt", "testing") 7 julia> io = FilePathsBase.FileBuffer(Path("test.txt")) FileBuffer(p"test.txt", IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=true, append=false, size=0, maxsize=Inf, ptr=1, mark=-1), true, false, false) julia> read(io, 3) UInt8[] julia> read(io, 3) UInt8[] julia> read(io, UInt8) 0x74 julia> read(io, 3) 3-element Vector{UInt8}: 0x65 0x73 0x74
The text was updated successfully, but these errors were encountered:
read(::IO, nb)
S3Path
The current work around for this is:
io = IOBuffer(read(Path("test.txt")))
This is effectively what is happening internally with FileBuffer
FileBuffer
Sorry, something went wrong.
eof(::FileBuffer)
true
eof
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: