Well, I'm using .net version of Dropbox V2 API with Visual Basic 2015, and I'm trying with it to download an .exe file from my dropbox. So, I do this:
Dim response = Await dbx.files.BeginDownload(path + "/" + file)
filecontainer = Await response.GetContentAsStreamAsync()
Filecontainer is a string. After that, I try to write that string into a created .exe file, and then, that exe file is larger than original. I was thinking it was due to encoding, but it still doesn't work. So, test .exe file is about 940 kB, but a "copy" that's downloaded from dropbox is about 1.7 MB.
Am I doing something wrong or?