Top "Filestream" questions

In .NET framework filestream exposes a Stream around a file, supporting both synchronous and asynchronous read and write operations.

JPEG data-stream to TImage

I have some image-files stored into one file (some kind of archive). That file looks like this: Well, it's separated …

delphi delphi-7 filestream timage
FileStream to save file then immediately unlock in .NET?

I have this code that saves a pdf file. FileStream fs = new FileStream(SaveLocation, FileMode.Create); fs.Write(result.DocumentBytes, 0, …

c# filestream filelock
Replacing a string within a stream in C# (without overwriting the original file)

I have a file that I'm opening into a stream and passing to another method. However, I'd like to replace …

c# .net string filestream
How can I return a Zip file from my Java server-side using JAX-RS?

I want to return a zipped file from my server-side java using JAX-RS to the client. I tried the following …

java jersey jax-rs filestream outputstream
File.ReadLines without locking it?

I can open a FileStream with new FileStream(logfileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); Without locking the file. I …

c# file stream io filestream
decompress a .gz file using GZipStream

I have several .gz files, and I want to decompress them one by one. I have writen a simple code …

c# filestream gzipstream
SQL Server FILESTREAM limitation

I am looking at FILESTREAM attribute in SQL Server to store files in it. I understand it stores the files …

sql sql-server tsql sql-server-2008 filestream
FILESTREAM files being left behind after row deleted

I have successfully set up FILESTREAM on my SQL 2008 server; however I've noticed that even when I have deleted rows …

sql sql-server-2008 blob filestream
Saving openpyxl file via text and filestream

I'm building OpenPyXL into an application that expects a string containing the content of the excel file, for it to …

python excel filestream openpyxl
Access denied to write to folder, Why?

Morning, I am trying to create some text files to a folder on my desktop but am getting an a …

c# filestream access-denied unauthorizedaccessexcepti