In .NET framework filestream exposes a Stream around a file, supporting both synchronous and asynchronous read and write operations. ActionScript 3 for AIR 2 and above also uses FileStream, which supports both synchronous and asynchronous read and write operations.

learn more… | top users | synonyms

-2
votes
1answer
46 views

C# Process.Start odd behaviour.

I'm developing a program that automatically launches a process (here it's called XYZ.exe) every 30 seconds, like this: string [] args = {a, b, c, d}; StartInfo ProcessStartInfo = new ProcessStartInfo ...
0
votes
0answers
24 views

Reading “null”s from binary file C#

I wrote a small function that reads binary file to a byte array. But there is 1 bin file that when I'm reading it, it gives me "null"s (if its char[]) or zeros (if its byte[]), I see it when I'm in ...
0
votes
1answer
38 views

C# image save dots

I don't know that i'm doing wrong, I have been looking around the web, and tried a lot of different things but nothing works, when i try to save the image there is a lot of gray dots the result can ...
0
votes
3answers
59 views

How to read character in a file 1 by 1 c#

I want my program to read a text file all characters 1 by 1 and whereever it finds inverted comma ( " ), it adds a semicolon before that inverted comma. For eg we have a paragraph in a text file as ...
0
votes
0answers
4 views

SQL Server Filestream operations fail intermittently with “The network path was not found”

I had a problem that took days to solve. I could not find a problem exactly like it on this forum so I am posting the question here along with the solution. ASP.NET application on a web server ...
0
votes
0answers
17 views

Combining memory stream and convert to file in C#

I have a multipage TIFF file, and each page of this will be extracted in to memorystream passed to another method as a collection of stream. At the receiving end is it possible to combine these ...
-1
votes
1answer
22 views

Android File sharing between users

I want to know the ways of sharing files to another user in android.Like XMPP, If i open the file in my android mobile ,I want to share that file to another user.i don't want to use XMPP. Please guide ...
0
votes
3answers
52 views

how to catch \n\r in a filestream and line locations, C#

i have a .CSV file that holds data thats looks like this: Sana Paden,1098,64228,46285,2/15/2011 Ardelle Mahr,1242,85663,33218,3/25/2011 Joel Fountain,1335,10951,50866,5/2/2011 Ashely ...
0
votes
1answer
73 views

why warning appears when sending bitmap frame into MemoryStream to client?

Before I explain my problem, I'm sorry for my bad english. Okay, here my problem. when my Indy server sends bitmap frame to client, always appeared warning like this : "EAccessViolation at address ...
0
votes
1answer
28 views

How I can display Stream on the page?

I have a WCF method that I am calling, the method suppose to create a file but it create an exception. I try to find what is in the stream request that I am passing to this method. How I can alert or ...
2
votes
2answers
54 views

Keep the file open, don't lose data when the app crashes

I need to log info to a file around 1000-2000 times a minute. I also need to save that info in case the app crashes. Currently here's what I'm doing: using(StreamWriter sw=new ...
0
votes
0answers
28 views

Access to path is denied C:\Users\SkyDrive\SSD\SSDAssignment\SSDAssignment\MvcApplication1\Gallery

Im trying to access the DestinationFileName but it gives me an exception that the acces to path is denied. Know the data that i usually pass in the Path variable is ...
0
votes
0answers
25 views

Create File Stream Enabled Database in Network File (NAS Server) [migrated]

I want to create a filestream enabled SqlServer database using NAS server as the storage. I already passed the creation of DB step. Look at my previous question Creating SQL Server database with data ...
0
votes
1answer
35 views

I am getting an System.IO.IOException while uploading a file to Amazon cloud server

I am getting Error {System.IO.IOException: Unable to write data to the transport connection: An established connection was aborted by the software in your host machine. ---> ...
1
vote
0answers
27 views

Why is FileStream and CopyFile so much slower than Windows Explorer?

I'm trying to a copy a file across a network (Windows Server 2008 R2 to Windows 7 SP1 Enterprise) and when I drag-and-drop using Windows Explorer, I'm getting about 4.5 MB/s. (It's a WAN connection) ...
6
votes
1answer
88 views

How can I generate notifications that data written via a FileStream is on the disk?

I would like to read a file after I have been notified that a certain amount of data has been written to it via another thread. My intial attempt was to create a Reactive Subject in my Writer class ...
1
vote
2answers
32 views

How can I open a specific text file without using OpenFileDialog?

I have a rich text editor that I have created in C#. One of the features I am now trying to add is templates. I do not want the user to have to use an OpenFileDialog to navigate to the template and ...
1
vote
2answers
76 views

Downloading large files asp.net mvc 3?

I have a large pdf file (upto 2 GBs) on a database server which I want to send to client for download. Also, I have size limitations on my web server and cannot store complete file on it, after ...
3
votes
1answer
130 views

C# 2Gb file is 4gb in Ram. Why?

Im reading in a file(this file consists of one long string which is 2gb in length). This is my function which read all contents of the file into memory and then splits the string and places: *reader ...
3
votes
1answer
47 views

How to get PDF file in REST API in C#

I'm getting pdf file from REST API in folowing code line response = request.GetResponse() as HttpWebResponse;// HttpWebResponse response and I use stream reader to get the response ...
0
votes
0answers
40 views

Full Text search on varbinary(max) column is not working

I've searched every site, blog (even the answers here) but none seem to work. I created a db in SQL Server 2008 r2 (Fulltext search is activated and available for the created database), create a table ...
0
votes
1answer
42 views

getting out of memory exception while using fileStream

I am facing an Issue while uploading file from a web page to server. It works fine for files upto 200 MB, but starts throwing out of memory exception. Could you please help me I have pasted the code ...
-2
votes
1answer
25 views

C# Stream Writer write from array from different class [closed]

i've looked at similar questions, but i cant seem to understand what they're doing. Sorry, if this sounds redundant. it can read the contents from the existing file, and i can modify the contents ...
-4
votes
1answer
161 views

FileStream throws File not found

The program is meant to set the file path and the idea is that when the data is set, it should use this function: public void SendFile(String fileName, long fileSize, NetworkStream io) { ...
3
votes
2answers
191 views

Delphi - MemoryStream or FileStream

I am downloading an EXE file from internet using Indy (idHTTP), and I can use memorystream or filestream to save it to disk, but I really do not know if there is any difference between them (maybe in ...
1
vote
0answers
30 views

To serialize directly to file stream or buffer before

Here I was wondering what is generally considered to be faster. Either writing to the stream directly while serializing data using (var fs = new FileStream(file, FileMode.Create, FileAccess.Write, ...
0
votes
0answers
23 views

FileStream not closing with using statement

Having a problem with a file stream not being closed via a using statement. I have tried both using (var reportStream = new StreamWriter(new FileStream(Path.Combine(dirPath, "FileList.txt"), ...
0
votes
0answers
27 views

upload flv using fileStream w/ flash player

Currently I'm using fileReference to save an flv to my local machine. I'd like to upload to a server using fileStream or something similar that is supported by flash player. var fileRef:FileReference ...
0
votes
1answer
33 views

FileStream.copyTo(Net.ConnectStream) what happens intern?

this code works fine. My question is what happens within the Net.ConnectionStream when i use the CopyTo() method? System.Net.HttpWebRequest request using (FileStream fileStream = new ...
-2
votes
0answers
126 views

Convert varbinary(max) column data to a file on disk from SQL Server database? [closed]

How can I copy varbinary(max) column data to a respective file on disk or UNC Path from SQL Server database as soon as it get inserted into database table? It should automatically get converted to ...
0
votes
0answers
53 views

streamwriter is truncating exel export data in vb.net

I am writing an excel sheet using streamwriter and file stream it is working fine for small data but for large excel files its truncating data. Here is my code, 'Increment unlimited Using ...
17
votes
1answer
221 views

Windows API seems much faster than BinaryWriter - is my test correct?

[EDIT] Thanks to @VilleKrumlinde I have fixed a bug that I accidentally introduced earlier when trying to avoid a Code Analysis warning. I was accidentally turning on "overlapped" file handling, ...
3
votes
1answer
72 views

After using FileStream.SafeFileHandle, is it safe for me to remove a call to GC.KeepAlive()?

Consider the following code which I recently changed to use FileStream.SafeFileHandle: public static void FastWrite<T>(FileStream fs, T[] array, int offset, int count) where T: struct { int ...
4
votes
1answer
52 views

Does FileStream.SafeFileHandle *really* set the current stream position to 0?

According to the MSDN documentation for FileStream.SafeFileHandle: The SafeFileHandle property automatically flushes the stream and sets the current stream position to 0. This allows the file ...
0
votes
4answers
64 views

Asp.net FileStream Create throws error if file doesn't exist

I have a file path that might exist or might not exist. I want to create / override the file, and i have this code: string filePath = GetFilePath(); using (FileStream file = new FileStream(filePath, ...
0
votes
1answer
35 views

Downloading FileStream object doesn't open Download Dialog Box

Well, I already tried a lot of stuff to solve this issue, but none did. I developed a Reporting Service (2005) and deployed it. This report will be used by everyone who access a website (it's a ...
0
votes
1answer
94 views

C# FileStream reads bytes incorrectly

I am trying to develop an app that will upload large files to a web server running PHP. Almost immediately, I stumbled upon a problem that the file is not split correctly. Currently I have this ...
1
vote
1answer
45 views

Seek Method fails to read the text file C#

Using Seek Method to read a specific part of a text but it fails. I have two classes "allmethods.cs" and "caller.cs" There are two methods in "allmethods.cs" which are "WritingMethod" and ...
0
votes
1answer
62 views

How to prevent overwriting in a text file?

I have a trouble with the following code. It should prevent overwriting records in the text file. My code is like that: public static void WritingMethod() { StreamWriter Sw = new ...
0
votes
2answers
51 views

C# prevent CMD from Closing Automatically after running? [duplicate]

I want to prevent CMD from closing automatically after running the program. Code: static void Main(string[] args) { FileStream textfsw = new FileStream("fileone.txt", FileMode.Append, ...
-1
votes
2answers
72 views

How to read a Text File upto occurrence of a special character asterisk

Am trying to read a text file in asp.net where the file is not in a particular format, so i just wanted to read that file up to special characters(*) and skip the rest. In general it is of the format ...
0
votes
0answers
33 views

play video from various sources in WPF

I'm building an application (currently in WPF) that needs to show video from various sources, such as: Streaming (e.g youtube) Local file (e.g. mp4) File located on the web The source may change, ...
10
votes
2answers
104 views

How do I get the name of a file generated with a stream in C#?

I'm building a Windows 8 metro app with XAML/C#. I'm saving an .xml file my data structure with a stream, like this: XmlSerializer serializer = new XmlSerializer(typeof(MyObjectType)); using (var ...
1
vote
1answer
49 views

C# How to create a file contains 4 fields or more with records? [closed]

I have this code to create a file called "SomeFile.txt" FileStream fsw = new FileStream("SomeFile.txt", FileMode.Append, FileAccess.Write); I want to know how to insert 4 fields and about 10 ...
0
votes
0answers
25 views

Cannot open a filestream

The program is able to write the file (with the same path) from another machine, but it seems that it cannot read it. The database uses filestreaming and is a copy from an old SQL server. The database ...
-1
votes
3answers
95 views

Find a string in 8000 Ms word files

I stored many word file in my SQL database using FileStream , now I want to search in all of them to return those witch contains a string. The first solution that I found is open each file and read ...
0
votes
1answer
29 views

how to write a chunk data to a file

When client posts a chunk data(part of file), then server side should insert the chunk to file. But fs.open will truncate the file. So I cant use empty fd to write. Now this is what I am using it ...
0
votes
0answers
132 views

System.ObjectDisposedException: Cannot access a closed file in C# asp.net 4

I am sending a file to client for download. File could be big (upto few GBs), so I am sending it in chunks. This is my code: //code to get data in resp stream. using (Stream inputStream = ...
0
votes
0answers
31 views

CRUD operations by EF on sql table contains filestream column

I have a table like this : CREATE TABLE [dbo].[Files]( [Id] [int] IDENTITY(1,1) NOT NULL, [FileId] [uniqueidentifier] ROWGUIDCOL NOT NULL, [Name] [nvarchar](500) NOT NULL, ...
0
votes
1answer
45 views

Get the Progress of a Filestream?

I'm building an website that allows users to upload/download/delete/manage files in a database. For clarification, the web application uploads files to a database, NOT the file system. This is ...

1 2 3 4 5 20