3
votes
1answer
68 views

Copy executing files from a UNC path

I am writing an application that needs to copy files from a network directory, where the files are currently executing. I have tried opening the file with using (var source = new ...
0
votes
0answers
14 views

Scalable network I/O

I've previously had to deal with fairly low numbers of concurrent network I/O requests (on the order of 20-30). I now have a requirement to eek out as much performance as possible to allow tens of ...
0
votes
1answer
28 views

LinqtoCsv write - create new or append

I'm using LinqToCSV to write a list out to a csv file like this: var outputFile = ConfigurationManager.AppSettings["OutputFile"]; var context = new CsvContext(); ...
3
votes
3answers
150 views

Processing a large file in .Net

The Problem I need to be able to save and read a very big data structure using C#. The structure itself is rather simple, it's a very long array of a simple structs of a constant size. just an ...
-5
votes
2answers
49 views

Whats worıng in this code?

I am trying to edit all txt files in a folder (textbox4). If it finds searched word (textbox2) it repleaces with other (textbox3). But code does nothing. Dim mydir As String = TextBox4.Text Dim ...
4
votes
2answers
76 views

Does File.AppendAllText manage collisions (i.e. multi-user concurrency)?

Question Does File.AppendAllText manage collisions from multiple writers? Research I noticed that the MSDN documentation doesn't really provide a position either way, so I decided I'd reflect the ...
2
votes
4answers
79 views

Exception during xml processing [duplicate]

I'm just referring back to my question here (not yet resolved): c# Exception The process cannot access the file The exception is not happening when I'm running in Debug mode, it's only doing it when ...
6
votes
1answer
152 views

Is there a way to perform zero-copying in .NET?

In Java I'd use the java.nio library and use FileChannel.transferTo() and FileChannel.transferFrom(). Is there something similar in (specifically) C# or am I going to have to load some unamanaged .dll ...
0
votes
5answers
82 views

confused why IEnumerable to working invalid argument

Hi I am having some trouble I have a very simple script task in SSIS. This is the first time i used LINQ string iFileName = (string)(Dts.Variables["iFileName"].Value); string oFileName = ...
0
votes
1answer
42 views

Working with Zipped folder from memory

I'm making an XNA game, which uses a lot (currently ~2800) of small resource files. It has become a problem to move them around from place to place unarchived, so I thought maybe I could just zip them ...
2
votes
1answer
108 views

How to check for file contents in another file c#?

I know Basics of Read and Write file using StreamReader No idea about compare!! As You can see in above Image I've two files Error file and archive file.. I need to compare the 2nd column based on ...
3
votes
3answers
80 views

Do I need to worry about blocking tasks?

How much do I need to worry about blocking tasks in .NET? i.e. how does the .NET task scheduler handle blocking of threads in the thread pool and oversubscription? E.g. if I have some IO in a task, ...
0
votes
1answer
47 views

How do I uniquely tag file and it's various versions?

I am working on a small application to allow me modify files and version each file before each change. What I would like the app to do is uniquely mark each file so that whenever the same file is ...
0
votes
3answers
101 views

Regex to Identify Try-Catch and Try-Catch finally blocks contained in a .cs file

Hi I am trying to create an App to help me switch out the test contents of my Catch-Block and replace them with production contents. I am able to read through my file, and parse the contents, but ...
0
votes
5answers
303 views

Which is fast to read, .xml, .ini or .txt? [closed]

My application has to read the data stored in a file and get the values for the variables or arrays to work on them. My question is, that which file format will be fast and easy for retrieval of ...
0
votes
4answers
1k views

Could not find a part of the path?

I have the following code : fileinfo = new FileInfo(filePathAndName); if (!fileinfo.Exists) { using (xmlWriter = new XmlTextWriter(filePathAndName, ...
-1
votes
5answers
701 views

using StreamWriter in .NET

I have a console application which writes details of the processed jobs into .txt file. I use this code to do it: StreamWriter jp = new StreamWriter(jobsProcessed); ...
1
vote
3answers
74 views

.NET IO: Can I force a BinaryWriter (or a FileStream) to always flush to disk?

I need behaviour similar to Java's RandomAccessFile(path, "rws") method, namely flushing data to disk as soon as it is written to the file. I lean towards using BinaryWriter for my purposes, but it ...
3
votes
2answers
85 views

What is the “mouse” equivalent to System.Windows.Forms.SendKeys?

I'm looking for a .NET class that will do what SendKeys does, but for mouse input. Thanks!
7
votes
5answers
1k views

Calculate the execution time of a method [duplicate]

Possible Duplicate: How to measure how long is a function running? I have an I/O time taking method which copies data from a location to another. What's the best and most real way of ...
1
vote
0answers
172 views

IOException: Insufficient system resources when there is aplenty

I am coming across an error when I am trying to write out a file (~50 MB) I will randomly get the following error: IOException: Insufficient system resources exist to complete the requested ...
5
votes
1answer
173 views

File.Copy() and Symbolic Links

I want to copy a file to a new file name. Sometimes the source file might be a symbolic (file) link, created with mklink C:\MyPath\ThisIsASymbolicLink.xml C:\MyPath\ThisIsTheOriginal.xml I'm ...
1
vote
1answer
45 views

.net MD5 on stream

Lets say I'm doing something like: FileStream fs = File.OpenRead("xxx.xxx"); byte[] buffer = new byte[1024]; int count; long pos = 0, length = fs.Length; MD5 md5 = MD5.Create(); while(pos < ...
1
vote
1answer
130 views

how to acces SerialPort.Flush() and SerialPort.Finalize() functions

I was just browsing msdn and found this page. I did never see the functions SerialPort.Flush() or SerialPort.Finalize() before. So I tried to use those functions, but I'm getting an error. I added ...
-1
votes
1answer
509 views

WebClient does not support concurrent I/O operations

I did what @Enigmativity write here it is: Action<int, ProgressBar, Label, Label, int, Button> downloadFileAsync = (i, pb, label2, label1, ServID, button1) => { var bd = ...
0
votes
1answer
783 views

Looping through serial port (COM port) in VB.NET and detect the correct port which is used by device

Ok let me give you the details of the software and applications i am using: Windows 7 Professional Edition Microsoft Visual Studio Ultimate 2010 VB.NET .NET 4.0 Framework My device is a simple ...
2
votes
4answers
2k views

How to find and replace text in a file in c#

My code so far StreamReader reading = File.OpenText("test.txt"); string str; while ((str = reading.ReadLine())!=null) { if (str.Contains("some text")) { StreamWriter write = new ...
2
votes
1answer
133 views

How to manually Lock a file for other applications

I have spent quite some time figuring out how to do this but did not find any usefull solution. Here is what I want to do. I am generating a huge binary file in my application. The tricky thing is ...
2
votes
3answers
449 views

Process.Start can't find an existing file

I have the path of an executable file (C:\Test\n4.TestConsole.exe). File.Exists(path) returns true. File.OpenRead(path) gets me its stream with no problem. Process.Start(path) throws a ...
1
vote
1answer
44 views

Does not .NET File.Move to a new dir cause data transfer?

We have an application that exports very large data files to a windows network share. We have a potential requirement to move that file to a different folder under the same share later in the ...
0
votes
1answer
108 views

Concurrent reading/editing of file

I have a flat file database (an xml file). I have a client that reads and edits this database. I have the xml file in one directory which many clients connect to. If one client makes an edit, it needs ...
8
votes
1answer
222 views

How to asynchronously redirect ONLY standard error stream and not standard output stream of a process in C#, .net

I am writing an application in C# that at some point starts an application as a child process using the Process class with Asynchronous IO redirection as shown below: private void ...
2
votes
2answers
165 views

.NET 4.0 - Are the results of Directory.GetFiles always guaranteed to be sorted by filename?

I was wondering, in .NET 4.0+, are the results of Directory.GetFiles always guaranteed to be sorted by file name in ascending order? Please note that I'm not asking how to sort the results, this I ...
2
votes
5answers
211 views

Something weird with writing file

So, this is a problem: I have a several textboxes, and I need to serialize them. This is how I am doing this: protected void Button1_Click1(object sender, EventArgs e) { ...
1
vote
1answer
229 views

How to manage raw data (bitstream or bytestream) in .NET 4.0?

My C# .NET 4.0 application needs to access data in the filesystem and access them as a bitstream or bytestream. What I need is the following: Splitting a data block into two sequential data blocks. ...
0
votes
1answer
72 views

Saving 2D Arrays (high frequency) - structure needed

I´m searching for a solution to store 2D (int) Arrays to local disc - doesn´t sound very hard, but the frequency and the size of the arrays keep bothering me. The array size is [1400][400] and at ...
2
votes
1answer
174 views

Best way for set date creation of file, which downloaded by filestream

I have part of code which download file from ftp server using FileStream class: FileStream outputStream = new FileStream(filePath + "\\" + fileName, ...
-1
votes
1answer
242 views

How to read & add all text from a text file to AutoComplete?

How to read & add all text from a text file to AutoComplete? ( C# Windows Application ) what i want is like:- foreach (string str in File.ReadAllLines("sometext.txt")) { ...
0
votes
1answer
328 views

How to gather received buffers in socket programming (TCP/IP) in .net?

I am using the server-client model for communicating with a hardware board using socket programing. I receive data from board using "read()" method of "NetworkStream" class which reads a buffer with ...
0
votes
2answers
336 views

Is Async I/O generally a little slower than sync I/O?

While being good for thread hygiene I expected asynchronous I/O to always be a little slower than synchronous I/O. My tests seem to prove that async I/O sometimes is faster than sync. What am I ...
-1
votes
3answers
109 views

How to replace same text in a text file [closed]

i created a c# windows login form and i am saving username or password to a text file but every time when i use same username or password that i have saved before it takes new place in that text ...
0
votes
1answer
359 views

How to get texts form a text file to AutoComplete c#/.net Windows Form

i have created a login form and i am saving username or passwords to a text file useing using System.IO FileStream. And i want to use AutoComplete for username textbox or password textbox. i want to ...
0
votes
1answer
130 views

how to show multy username or password from text file to textBox1 or textBox2 c#/.net

i have created a login form using c# Windows form & i am saving username or password to a text file by submiting login form. but what i want is:- when i click in my textbox it should show the all ...
0
votes
3answers
449 views

how to save Login enry to a XML file

i am creating a Simple Login form in C# Windows Form .Net 2.0, And i want to save login Name or Password to Xml file so that once i submit the username or password i don't have to put the same ...
0
votes
1answer
329 views

Why can't I delete files I created in code in Metro style apps?

I can create, read from and edit files created by my application in my Metro style app, but it won't let me delete (and yes, I do have the necessary Declarations and File type associations set) them! ...
1
vote
3answers
229 views

Run a Process with Redirected File Paths in .NET

Is there a way to run a process with redirected file paths in .NET similar to what Sandboxie and DropboxPortableAHK does? For instance, if the process wants to write a file at C:\file.txt, I want my ...
1
vote
2answers
58 views

How can I quickly identify the path and the search pattern in C:\Users\Admin\Samples\*.pdf?

I would like to create a simple copy console application (I know copy already exists in DOS). Exactly like the DOS copy command I would like to be able to execute my copy application with two simple ...
1
vote
3answers
69 views

Transactionally switch two files?

I have a.tmp and b.tmp. I like to rename a to b and b to a however a.tmp must ALWAYS exist. Is it possible to do renames transactionally? I'm using C# on windows. However i can use cmd/shellexecute ...
1
vote
2answers
590 views

How can I tell if an IOException is caused by the fact that another process uses that file?

Let's take this code sample : using System; using System.IO; namespace ConsoleApplication25 { class Program { static void Main() { var bytes = new byte[] { 1, 2, ...
2
votes
2answers
337 views

Asynchronous Reading/Writing to same stream?

Occasionally we need to copy huge files from one bucket to another in AWS S3. Whenever possible we use the CopyRequest to handle this operation all on AWS (since no round trip required back to the ...

1 2 3 4