Tagged Questions

5
votes
6answers
136 views

C# File I/O Efficiency

Hi, I have done a homework assignment, here is the problem statement: Your program should work as follows: Ask the user to give you a file name. Get the file name and save it. …
6
votes
2answers
76 views

Why doesn’t Scala Source close the underlying InputStream?

I'm using Scala Source.fromFile however I can't seem to find a nice way of getting it to close the underlying InputStream once the file has been read. Here's my code that will fai …
1
vote
6answers
122 views

Most efficient way to create and write multiple 10 KB text files?

We're using the following approach to writing out text files: public void WriteFile(string filePath, string contents) { if (string.IsNullOrEmpty(filePath)) { throw new Argumen …
1
vote
2answers
182 views

File I/O in C++

I have a data file where I need to read a datum from each line and store it. And then depending on the value of one of those datums store that data in an array so that I can then c …
1
vote
4answers
62 views

Is it possible to write to a CD with .NET?

Possible Duplicate : Write to CD from .net I have a data file in f:\ drive named 'cd.txt'. I want to write this file to a CD i.e E:\. String source ="F:\\cd.txt"; String destina …
0
votes
5answers
105 views

Creating a temp file is incredibly slow.

Any reason why a call to File.createTempFile("prefix", ".suffix", new File("C:\\"); might take 40-50 seconds to complete? Update: I knocked up a little test harness that benchm …
2
votes
1answer
59 views

Method in Java to create a file at a location, creating directories if necessary?

I am attempting to write a file using java.io, where I am trying to create it at the location "some/path/to/somewhere/then-my-file". When the file is being created, any of the dire …
0
votes
2answers
90 views

Handling large files

Hello there, I need to do some file I/O(mainly reading) on a very large file(>3GB), can someone suggest the best way to do so? I want to do in C++. ~calvin
0
votes
6answers
37 views

Remove Duplicates From File (vs COBOL)

This Cobol question really piqued my interest because of how much effort seemed to be involved in what seems like it would be a simple task. Some sloppy Python to remove file dup …
1
vote
3answers
49 views

Waiting until a file is available for reading with Win32

I'm watching a directory by calling ReadDirectoryChangesW synchronously. When a new file is available, I try to access it immediately with CreateFile with GENERIC_READ and FILE_SHA …
1
vote
6answers
102 views

Outputting from file one line at a time

I'm trying to output text from a file one line at a time. I'm currently hardcoding it and I have this so far: int main(int argc, char *argv[]) { int x; int k; int lim …
0
votes
8answers
106 views

opening a file with fopen

I've been trying to open a file and output text, but I keep getting errors. So I thought I would start at the very beginning and just try opening the file. This is my code: #inc …
0
votes
1answer
19 views

Random access of multiple files and file caching

This relates to some software I've been given to "fix". The easiest and quickest solution would make it open and read 10 random files out of hundreds and extract some very short st …
0
votes
4answers
86 views

Get All current file names in directory and write it out in console C#

I'm writing a program that requires the ability to list all applications installed, and it will do that by listing all the uninstallers for it in a specific directory. This code is …
2
votes
5answers
147 views

How to efficiently process 300+ Files concurrently in scala

Hello I'm going to work on comparing around 300 binary files using Scala, bytes-by-bytes, 4MB each. However, judging from what I've already done, processing 15 files at the same t …

1 2 3 4 5 49 next
15 30 50 per page