Tagged Questions
0
votes
1answer
34 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 ...
1
vote
2answers
142 views
Copy file from remote server to client browser via my server without writing the entire file to disk or memory
This is the scenario.
There is a file on a remote file server (say I have a file hosted on DropBox)
I want to offer that file as a download on my web application (c# asp.net 4.0)
I want to hide the ...
0
votes
3answers
103 views
Reading stream with 2 different readers
I have a text file that contains a fixed length table that I am trying to parse. However, the beginning of the file is general information about when this table was generated (IE Time, Data, etc).
...
1
vote
1answer
93 views
Use a stream as file?
I am working on a telephony application using a third party library to send audio across the wire.
This third party library only accepts a very specific wav format, and takes in the file as a ...
1
vote
2answers
170 views
Read files from Stream
I posted two files to my custom web service. Now I need to read this stream into separate files.
I've sent an XML and a Text file and in the web service I read it as following:
StreamReader stream = ...
1
vote
1answer
248 views
Create FileTable Or FileStream SQL Type Use Stream in C#
I wan't to create fileTable or filestream type in SQL Server, but I need to create it from Stream not a Location on disk, Is there any way to do this? any suggestion?
0
votes
1answer
125 views
Creating Folder at Network in Java
I want to send folder at network, according to my code if a folder contains files it send them successfully, but it does not create a folder on client side if folder contains inside folder?
Server ...
2
votes
1answer
142 views
C#: Read a stream from a file
I have a stream saved to a file the following way:
public void SaveTest(DataObject data)
{
var fullPath = Path.Combine(Path.GetTempPath(), data.Descriptor.Name);
var fileStream = new ...
-1
votes
3answers
220 views
Casting stream to filestream [duplicate]
Possible Duplicate:
Convert a Stream to a FileStream in C#
My question is regarding the cast of stream to FileStream ...
Basically I need to do that to get the name of the file, because if ...
-1
votes
2answers
979 views
BufferedReader.readLine() do not read and hang the system(wait) [closed]
BufferedReader.readLine() do not read and hang the system(wait). any solution plz Thanks in advance.
InputStream istrm = runtimeProcess.getInputStream();
InputStreamReader istrmrdr = ...
6
votes
2answers
415 views
Will StreamWriter.Flush() also call FileStream.Flush()?
I have a StreamWriter which underlying stream is a FileStream. Will the following code guarantee that the FileStream also flushes its buffer into the actual file on the file system, or do I need to ...
1
vote
2answers
60 views
When shall I do a explicity Flush() while copying streams in C#?
I have a method that copies one stream into another. It's fairly simple and typical:
public static void CopyStream(Stream source, Stream destination)
{
byte[] buffer = new byte[32768];
int ...
2
votes
3answers
587 views
File I/O best practice - byte[] or FileStream?
I'm currently working with a lot of different file types (txt, binary, office, etc). I typically use a byte[] or string to hold the file data in memory (while it is being written/parsed) and in order ...
1
vote
2answers
242 views
Performance of FileStream's Write vs WriteByte on an IEnumerable<byte>
I need to write bytes of an IEnumerable<byte> to a file.
I can convert it to an array and use Write(byte[]) method:
using (var stream = File.Create(path))
stream.Write(bytes.ToArray());
...
2
votes
2answers
595 views
FileStream adding “extra” characters to TXT file
It does not matter if I read a TXT file or a XML file I always see "extra" info added into my file which is saved to disk. We first do the following:
FileStream fs = new ...
0
votes
1answer
1k views
BouncyCastle PGP Encryption / Decryption: Caused by: java.io.EOFException: premature end of stream in PartialInputStream
When attempting to encrypt then decrypt a file I run into the following exception:
com.example.common.crypto.CipherException: org.bouncycastle.openpgp.PGPException: Exception starting decryption
...
1
vote
1answer
287 views
JAVA : Transferring files through socket
What I'm doing :
I am writing a program on client-server file transfer through socket connection.
The server sends files to client computer through buffered ObjectOutputStream.
The file is being sent ...
0
votes
3answers
57 views
Is there a way to pass a stream to some external component while maintaining ownership over that stream?
I have an application which reads a specific file format. Additionally, the application supports "plugins" which read alternate file formats, and convert them into the standardized format the tool ...
3
votes
2answers
238 views
C++: What is a stream
I have been hearing about stream, more specifacally file streams.
So what are they?
Is it something that has a location in the memory?
Is it something that contains data?
Is it just a connection ...
2
votes
1answer
141 views
C++ Cascading Stream Insertion (HW Help)
I found this potential solution in previous stack question. My problem is that it's not outputting to the file.
The program terminates without errors and actually does what it's supposed to do as I ...
1
vote
1answer
1k views
PHP Stream mp3 file
i need to allow the user to stream it only no download for that file how can i do that ?
another question this code i have problem the file get downloaded first then play ?
<?php $file = ...
0
votes
1answer
89 views
unbuffered stream behaving like line buffered
i was reading about streams and found out that we could control streams by using setvbuf() function...it was written tat in line buffered mode stream sends the data to the file when a newline is ...
2
votes
1answer
500 views
How to run an async function for each line of a very large (> 1GB) file in Node.js
Say you have a huge (> 1GB) CSV of record ids:
655453
4930285
493029
4930301
493031
...
And for each id you want to make a REST API call to fetch the record data, transform it locally, and insert ...
0
votes
2answers
88 views
Error on HTTP Stream PHP
I have this method:
protected function _sendRequest($url, $method, Busca_Cxense_Data $data, $get = null) {
if (! isset ( $this->_urls [$url] )) {
throw new ...
1
vote
2answers
154 views
Download Files From Resource Library in c# .net
I am developing an application where from several screens user has to download a sample file(excel) to work with. What will be the preferable way to do so.
What i am doing is
Placing the file in the ...
3
votes
2answers
713 views
Differences in reading file using ifstream in g++ and msvc
When using ifstream class to read words from an input file, I have used the following expression:
#include <iostream>
#include <fstream>
int main(int argc, char *argv[])
{
...
1
vote
3answers
2k views
Reading multiple files in a Stream
Hei!
How can I read multiple text files at once?
What I want to do is read a series of files and append all of them to one big file. Curently I am doing this:
take each file and open it with a ...
3
votes
3answers
699 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 ...
1
vote
1answer
2k views
System.IO.IOException: Cannot close stream until all bytes are written
I am using following code to send a file to an external service.. It works for small files, but throws IOException for big files..
FileStream newStream = File.OpenRead(_fullFilePath);
MemoryStream ...
0
votes
1answer
55 views
Strip Some ASCII Codes from FIle Efficiently?
I have an on-disk file of 100mb (can be up to 300mb). There are nulls and some other control characters that should not be in there. At first I read the string into memory and then re-read it Char by ...
0
votes
1answer
419 views
Why is ::feof() different from ::_eof(::fileno())?
DISCLAIMER: Don't use ::feof() as your loop condition. For example, see the answer to: file reading: feof() for binary files
However, I have "real" code that demonstrates a problem that does not ...
0
votes
2answers
117 views
tokens and file streams
I study source codes of programs, (written in c++) that operate on file streams. But every now and then i stumble upon something called tokens. Can you please explain to me, what tokens do and why are ...
2
votes
3answers
2k views
C# Casting MemoryStream to FileStream
My code is this:
byte[] byteArray = Encoding.ASCII.GetBytes(someText);
MemoryStream stream = new MemoryStream(byteArray);
StreamReader reader = new StreamReader(stream);
FileStream file = ...
0
votes
2answers
144 views
Is there a restriction on the amount of text I can write / read with a stream writer / reader in C#?
I am trying to write to some text file using a stream writer.
the text I am trying to write is from a different text file.
I try:
string line = reader.ReadLine(); //reader is a streamReader I ...
1
vote
1answer
1k views
Saving Stream to a file
I'm writing a WCF Service to Upload file using REST.
But my probleme come from this code :
public void UploadFile(Stream fileStream, string fileName)
{
FileStream fileToupload = new ...
2
votes
2answers
3k views
FileStream, read data chunk from big file. Filesize bigger than int. How to set the offset?
FileStream.Read() is defined as:
public override int Read(
byte[] array,
int offset,
int count
)
How can I read some bytes from an offset bigger than int.MaxValue?
Let's say I have a ...
1
vote
2answers
204 views
How to expose a sub section of my stream to a user
I have a stream that contains many pieces of data. I want to expose just a piece of that data in another stream. The piece of data I want to extract can often be over 100mb. Since I already have ...
0
votes
4answers
380 views
Stream with openWrite not writing until it is closed
I have a stream writer that opens using a WebClient.OpenWrite call. For this simplified case, assume that reader is reading a multiple of dataChunkSize.
using (Stream writer = ...
0
votes
2answers
440 views
Usage of Stream more than once
I am trying to upload an image file to a repository using HttpPostedFile.InputStream and resize to different thumbnail sizes using the same stream.
Step 1. Using Stream sm = ...
4
votes
4answers
3k views
File.WriteAllBytes or FileStream.Write
What's the difference between File.WriteAllBytes and FileStream.Write/WriteBytes? I have a bitmap object that and I want to create a new bmp/jpg/png on disk. I think I read somewhere that ...
0
votes
1answer
768 views
C# .NET: Will a BinaryWriter flush when the FileStream buffer is filled?
I'm coming across something trivial, but it appears that data is flushed to disk (out of the FileStream's buffer) when the data I'm buffering hits the size of the FileStream's buffer.
//use the ...
1
vote
1answer
544 views
How do I convert a file stream to a data URI in Python?
I have a file stream of an image in Python:
\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\x87...
How do I convert this to a data URI?
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAU...'
0
votes
2answers
1k views
Create pdf document from System.IO.Stream object?
I have Stream object that contains data that i want to show in PDF document.
How do i create and Save PDF document from that Stream object? (The Stream object is created using MigraDoc tool)
2
votes
2answers
759 views
C# - Copying files and resume support
Hi
Does anyone have workable sample code that copy files and support resuming them if there are the source has been disconnected?
In this example I am copying videos files. If the source is ...
0
votes
1answer
541 views
How to convert Bystream Video to file video in java
I'm build a project to convert video to byte stream, doing some encryption, and convert agaian stream that have been encrypting into video file. I am using mpeg video..
Anybody know how to convert ...
1
vote
1answer
328 views
ArgumentNullException when streaming files via WCF
I have a WCF streaming binary files. Below is a shortened version of the contract.
[MessageContract()]
public class DocumentTransfer
{
[MessageHeader(MustUnderstand = true)]
public string ...
4
votes
2answers
1k views
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 can do the same with File.ReadLines(string path)?
1
vote
4answers
393 views
PHP: Preventing headers & session_start
I've built my own educational MVC framework to learn more about PHP OOP, which I certainly have, but for the moment I have gotten myself into a pickle. I need to use sessions throughout most of the ...
1
vote
1answer
342 views
What is the best data structure to store words found in a document and a counter with their occurences?
Let's say I have a corpus of documents which I want to read one by one and store them in a data structure. The structure will probably be a list of something. That something class will define a single ...
0
votes
2answers
640 views
The process cannot access the file <filepath> because it is being used by another process
I'm upload big files dividing its on chunks(small parts) on my ASMX webservice(asmx doesn't support streaming, I not found another way):
bool UploadChunk(byte[] bytes, string path, string md5)
{
...


