Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
684 views

What's the difference between FileStream.Flush() and FileStream.Flush(True)?

MSDN says that FileStream.Flush(True) "also clears all intermediate file buffers.". What does "all intermediate file buffers" mean exactly?
12
votes
3answers
22k views

How to both Read/Write File in C#

I want to both read from and write to a file. This doesn't work. static void Main(string[] args) { StreamReader sr = new StreamReader(@"C:\words.txt"); StreamWriter ...
11
votes
3answers
5k views

C# FileStream : Optimal buffer size for writing large files?

Suppose I'm writing a couple of files to disk, between 2MB and 5GB. What are sensible buffer values for the FileStream ? Is it sensible to work with buffersizes of several megabytes, or should I ...
10
votes
3answers
717 views

Read from a growing file in C#?

In C#/.NET (on Windows) is there a way to read a "growing" file using a file stream? The length of the file will be very small when the filestream is opened, but the file will be being written to by ...
9
votes
1answer
984 views

Synchronization requirements for FileStream.(Begin/End)(Read/Write)

Is the following pattern of multi-threaded calls acceptable to a .Net FileStream? Several threads calling a method like this: ulong offset = whatever; // different for each thread byte[] buffer = ...
8
votes
1answer
177 views

FileStream not closing file

I have the following code: using (MemoryStream str = new MemoryStream()) { Program.api.GetDocument(result, str); using (FileStream fileStream = File.Create(filePath)) ...
8
votes
1answer
151 views

operator precedence (void* before bool?)

When answering this question I made some research which really confuses me. I noticed that two ifstreams that succesfully open are not equal but two ifstreams that fail are. At first i checked ...
8
votes
3answers
2k views

Getting Original Path from FileStream

Given a System.IO.FileStream object, how can I get the original path to the file it's providing access to? For example, in the MyStreamHandler() function below, I want to get back the path of the ...
7
votes
1answer
615 views

FileSystemWatcher triggers for filestream open

I have a filesystemwatcher that will trigger an event when a file is modified. I want to read from that file once the lock has been removed. At the moment I am just trying to open the file once the ...
7
votes
3answers
2k views

C# - How do I read and write a binary file?

How do I read a raw byte array from any file, and write that byte array back into a new file?
6
votes
3answers
175 views

Determining file extension given a FileStream

Is there any way to know the type of the FileStream. I have a function that takes a FileStream object and I want to determine the file extension based on that FileStream.
6
votes
5answers
103 views

Returning a stream from File.OpenRead()

I'm in the process of writing a WCF service that will allow an ASP.Net web site to retrieve files (based on this article). My problem is that when I return the stream, it's blank. For simplicity, ...
6
votes
3answers
871 views

FileStream Read/Write method's limitation

FileStream's read/write method can take only integer value as length. But FileStreamobject returns length in long. In this case, what if file size is larger than integer value (approximate more than ...
6
votes
2answers
521 views

Strange behavior with FileStream.WriteFile

I'm working on a program that does heavy read/write random access on huge file (till 64 GB). Files are specifically structured and to make access on them I've created a framework; after a while I ...
6
votes
5answers
296 views

Best strategy for storing documents in SQL Server 2008

One of our teams is going to be developing an application to store records in a SQL2008 database and each of these records will have an associated PDF file. There is currently about 340GB of files, ...
6
votes
3answers
2k views

C# - FileStream and creating folders

Just a quick question. I'm using something like this FileStream fs = new FileStream(fileName, FileMode.Create); I was wondering whether there was a parameter I could pass to it to force it to ...
6
votes
3answers
2k views

C equivalent to fstream's peek

I know in C++, you're able to peek at the next character by using: in.peek();. How would I go about this when trying to "peek" at the next character of a file in C?
5
votes
2answers
49 views

C#: How-To find out if I have the right encoding

I am quite new to files, streams and different codepages. See this is my problem: I get text files and some of them have been create with the codepage Windows-1252, some are still IBM850 and ...
5
votes
4answers
257 views

FileStream.ReadByte: Byte's are never negative numbers?

From msdn: FileSystem.ReadByte The byte, cast to an Int32, or -1 if the end of the stream has been reached. So -1 is basically a "magic value". Does this mean the bytes returned from streams ...
5
votes
1answer
566 views

Save Icon File To Hard Drive

I know that this must be incredibly easy - It's unbelievable how long I have searched for an answer to this question based on how simple it is in VB6. I simply want to extract an Icon from an EXE File ...
5
votes
2answers
182 views

Can I use FileStream to implement a file lock?

Can I use the FileStream constructor to ensure only one process accesses a file at a time? Will the following code work? public static IDisposable AcquireFileLock() { IDisposable lockObj; do ...
5
votes
5answers
835 views

How to Lock a file and avoid readings while it's writing

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 ...
5
votes
5answers
445 views

Extracting, then passing raw data into another class - How to avoid copying twice while maintaining encapsulation?

Consider a class Book with a stl container of class Page. each Page holds a screenshot, like page10.jpg in raw vector<char> form. A Book is opened with a path to a zip, rar, or directory ...
5
votes
1answer
690 views

c++ library for endian-aware reading of raw file stream metadata?

I've got raw data streams from image files, like: vector<char> rawData(fileSize); ifstream inFile("image.jpg"); inFile.read(&rawData[0]); I want to parse the headers of different image ...
5
votes
3answers
639 views

storing images in sql server

I am trying to put together db design for storing images. Many of you might have had experience designing db to store images and the challenges associated with it. The db might store hundreds of ...
5
votes
7answers
1k views

How can I identify a file type from a blob/filestream?

We bought an "off the shelf" application a lonnng time ago that is capable of storing files as a blob within SQL Server. We've noticed that the database has more than doubled in size within the past ...
5
votes
5answers
2k views

Will a using clause close this stream?

I've apparently worked myself into a bad coding habit. Here is an example of the code I've been writing: using(StreamReader sr = new StreamReader(File.Open("somefile.txt", FileMode.Open))) { ...
5
votes
5answers
823 views

How to ensure all data has been physically written to disk?

I understand that .NET FileStream's Flush method only writes the current buffer to disk, but dependent on Windows' disk driver and the hard disk firmware this is no guarantee that the data is actually ...
4
votes
3answers
129 views

C# Serializing datacontracts from file

I have a list of Xml messages specifically DataContract messages that i record to a file. And i am trying to deserialize them from file one by one. I do not want to read the whole file into memory at ...
4
votes
2answers
331 views

inotify - how to find out which user has modified file?

I'm looking for guidance on how to find out which user has modified a particular file. While inotify is great to get notification when a particular file is touched, how do I figure out which user has ...
4
votes
2answers
453 views

Index out of range when decrypting a file

I'm really not sure what's going on here. My app is encrypting files correctly and without issue, but it's throwing an IndexOutOfRangeException when trying to decrypt the same file... Here's my code: ...
4
votes
3answers
455 views

Implementing an async “read all currently available data from stream” operation

I recently provided an answer to this question: C# - Realtime console output redirection. As often happens, explaining stuff (here "stuff" was how I tackled a similar problem) leads you to greater ...
4
votes
2answers
824 views

C#: Opening a Word File in a FileStream for reading while it is opened in Word

I am trying to open a Word file for reading using a FileStream in C#. I hacked a quick sample application which consists of a textfield and a button to trigger the creation of the stream. The sample ...
4
votes
5answers
719 views

Upload a file with encoding using FTP in c#

The following code is good for uploading text files but it fails to upload jpg files: (not completely - the file name is good but the image is corrupted) private void up(string sourceFile, string ...
4
votes
1answer
966 views

Download pdf programatically

How can I download a pdf and store to disk using vb.net or c#? The url (of the pdf) has some rediection going on before the final pdf is reached. I tried the below but the pdf seems corrupted when I ...
4
votes
4answers
2k views

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, result.DocumentBytes.Length); fs.Flush(); fs.Close(); It ...
4
votes
1answer
387 views

How to append text to a text file in C++?

How to append text to a text file in C++? Create new if does not exist and append if exist.
4
votes
4answers
1k views

Reusing a filestream

In the past I've always used a FileStream object to write or rewrite an entire file after which I would immediately close the stream. However, now I'm working on a program in which I want to keep a ...
4
votes
1answer
313 views

SQL Server 2008 Filestream Win32 error without a network cable!

I have a SQL Server 2008 database utilizing Filestreaming and all works fine and dandy apart from under one very strange circumstance. If i have my database on, say a laptop, on a locally installed ...
4
votes
2answers
835 views

SQL Server 2008 FILESTREAM performance

I had some questions around the FILESTREAM capability of SQL Server 2008. What would the difference in performance be of returning a file streamed from SQL Server 2008 using the FILESTREAM ...
4
votes
7answers
2k views

Will closing a FileStream close the StreamReader?

If I use a FileStream to create a StreamReader, will the StreamReader close when I close the FileStream or will I need to close the StreamReader too? public void ReadFile() { var file = new ...
4
votes
3answers
3k views

SQL Server FILESTREAM limitation

I am looking at FILESTREAM attribute in SQL Server to store files in it. I understand it stores the files on hard drive and stores the file pointer/path information in DB. Also, maintains ...
4
votes
2answers
665 views

How to check if a file is in use?

Is there any way to first test if a file is in use before attempting to open it for reading? For example, this block of code will throw an exception if the file is still being written to or is ...
4
votes
5answers
1k views

c# - reading from binary log file that is updated every 6 seconds with 12k of data

I have a binary log file with streaming data from a sensor (Int16). Every 6 seconds, 6000 samples of type Int16 are added, until the sensor is disconnected. I need to poll this file on regular ...
4
votes
2answers
413 views

Perl CGI::Application::Plugin:Stream + Jquery Taconite plugin - Cannot download file

I am using the Stream (qw/stream_file/) Plugin for CGI::Application within a runmode to read a file from the filesystem and stream it back to the user. The user clicks on a link whose "id" attribute ...
4
votes
2answers
886 views

What is the quickest way to stream an image from a FILESTREAM in SQL to a browser?

I have images stored in my database in a FILESTREAM and I am trying to find out what the best solution is to get that image back out into a web browser. If I was managing the files on the file system ...
4
votes
4answers
2k views

Performance issues in FileStream.Write while writing bytes decoded using AsciiEncoding.GetBytes and Convert.FromBase64String

I am facing a performance problem while using the FileStream.Write function. I have a console application that i use to read a Base64 string from a file (~ size is 400 KB) using a StreamReader ...
4
votes
1answer
706 views

Writing to a FileStream behaves strangely, as observed by process monitor

I'm using FileStream to write to a file, and watching the underlying system calls using Process Monitor. I'm having trouble with some file locking issues in a production deployment, so I'm looking at ...
3
votes
3answers
75 views

Layered application: Store file in filestream in the database

For an asp.Net MVC project, I will need to handle large files( mostly 200-300Mo, sometime 1Go). I will store them in the database(for backup reasons/consistency reason). I'm concerned by performance ...
3
votes
1answer
66 views

Rails with SQL Server 2008/2012 - FILESTREAM

Novice here! I'm currently creating an application using Ruby on Rails. This particular application uses binary data for content. Apparently, SQL Server is the best way to go because of the ...

1 2 3 4 5 12