Good afternoon,
I am trying to create a fake (virtual?) drive that would display a
programmatic generated file system tree that when the user clicks on a file
in internet explore it opens the file but could first run operations on
that file like log that it was opened or even de-crypt the file a
Thank you for your help! I'll look into fuse.
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit ht
I am trying to Decrypt and Encrypt a file downloaded as a stream using some
sample code from golang. I am encrypting like this.
// read content from your file
plaintext, err := ioutil.ReadFile(fileName)
if err != nil {
panic(err.Error())
}
// this is a key
key := []
I have a encryption function that gives a cipher.StreamWriter
writer := &cipher.StreamWriter{S: stream, W: outFile}
I am trying to upload it to using a library that has a function that is
uploadFile that requires a IO.reader is there a way to pass the writer to
the io.reader so the file i
tel wrote:
>
> Try to construct an io.Pipe maybe
> pReader, pWriter := io.Pipe()
> writer := &cipher.StreamWriter{S: stream, W: pWriter}
> UploadFile(outputFileName, metadata, pReader)
> writer.Write(src)
> On 02/02/2017 10:27 PM, Justin C wrote:
>
&g