I\'m currently using PushbackReader and while waiting开发者_开发百科 for where it \'supposed\' to be an EOF, I get the character 65535 and I\'m wondering if that\'s normal.
I\'m thinking about to write a restful service which is able to upload and stream large video files (GB) (in future it might not only be videos and could also be large documents.
We have stored all media in Sql Filestream, but now we\'ll need Video and Audio streaming... Will this be possible with Sql Filestream or will I have to take all of the Video and Audio out of the data
I have this code that saves a pdf file. FileStream fs = new FileStream(SaveLocation, FileMode.Create);
Say you get a file handle from some outside DLL and instantiate a FileStream with it. It works just fine for reading and writing.
I am writing a script to update a database to add Filestream capability. The script needs to be able to be run multiple times without erroring. This is what I currently have
My web application returns a file from the filesystem. These files are dynamic, so I have no way to know the names o how many of them will there be. When this file doesn\'t exist, the application crea
I want to return some files in a HttpResponse and I\'m using the following function. The file that is returned always has a filesize of 1kb and I do not know why. I can open the file, but it 开发者_开
I\'ve configured a db w/ a FileStream group and have a table w/ File type on it. When attempting to insert a streamed file and after I create the table row, my query to read the filepath out and the b
I\'m trying to create a new log file every hour with the following code running on a server. The first log file of the day is being created and written to fine, but no further log files that day get c