Tagged Questions
1
vote
0answers
42 views
.net program with log4net stops logging
I have a .net program that uses log4net to write logs to the c:\temp directory and stores some app data in the ProgramData directory. The program will run fine for several days then suddenly stop ...
0
votes
4answers
68 views
How do I copy files from one directory to another, overwriting existing files? [closed]
How do I copy all files from one directory to another directory and overwrite all existing files with C#?
I have the following code to copy the file from one directory to another directory, but when ...
1
vote
1answer
42 views
Uploading files: FileUpload.SaveAs or manually writing FileUpload.FileBytes
Using the FileUpload control, please explain the difference between the following two methods of uploading file:
1. Using the FileUpload.SaveAs() method:
fileUploadControl.SaveAs(path)
2. Writing ...
0
votes
0answers
47 views
How to check a file is open or not in FileHelper [duplicate]
I am using FileHelper for exporting the data to csv for my C# project. I am facing an exception
"The process cannot access the file"
the reason is the file is already opened. Is there any ...
0
votes
2answers
44 views
External Console Application Control
I am trying to solve a difficult task, for part of which a console application was written several years ago. The source code of the console application has been lost and to rewrite it would most ...
1
vote
2answers
110 views
Download large file from HTTP with resume/retry support in .NET?
How to implement downloading a large file (~500MB) from HTTP in my application? I want to support automatic resume/retry, so that when connection is disconnected, my application can try to reconnect ...
1
vote
3answers
155 views
find files with same names but different extensions in a folder
I have an FTP server which stores files sent/uploaded by the client in a certain folder. The client will upload 3 files with same names but different extensions. For example,the client will send ...
0
votes
4answers
72 views
How would I write multiple lines of text to a file all at once?
I need to write lots of text to a file at once, but It has to be formatted in a specific way and not all in one line.
The code I have is:
If System.IO.File.Exists(filepath) Then
Using ...
0
votes
2answers
89 views
Best way to watch for files
OK I have an application that produces some contracts based on a file that is created by another app.
I have implemented a filewatcher to watch for the file being created and it then kicks off a ...
0
votes
1answer
52 views
Visual Basic reading from file - one line and seperating it
So I'm making application, where you have to log into.
So I got login screen and TextBoxes for both username and password.
I've got a file where all the information about logins is saved and it's ...
5
votes
2answers
87 views
Strange behavior from .NET regarding file paths
I couldn't find any information on this through professor Google, so here I am. Take the given path name and paste it into Windows Explorer. I stumbled across this after discovering bug in my code ...
0
votes
1answer
18 views
Advice on storing file data in a Dictionary or List and performance on the compare
I have a backup program which has been used internally for two years now, and I'm looking to improve the performance.
Lets use my computer as an example:
On my machine it takes roughly 7-10 seconds ...
0
votes
1answer
130 views
Copy a file in little chunks
I want to copy a file in little chunks (to cancel the copy operation if needed).
I'm trying to follow the unmarked solution here: How to copy a file with the ability to cancel the copy?
But I'm ...
2
votes
3answers
182 views
What is the simplest way to write the contents of a StringBuilder to a text file on in .NET 1.1?
I have to use StringBuilder instead of a List of string because of being stuck with .NET 1.1 for this project. It's really cramping my style, and making me feel like I'm wearing raggedy old leopard ...
0
votes
2answers
56 views
Process cannot Access a Locked File that is only used by my own Application
I keep getting the following error when I try to write to a temporary file:
The process cannot access the file
'C:\Users\jdoe\AppData\Local\Temp\jdoe.tmp' because it is being used
by another ...
-5
votes
5answers
80 views
Read data from a file line by line [closed]
I am currently open a file and show it on a message box.
private void button2_Click_1(object sender, EventArgs e)
{
//OpenFileDialog1.ShowDialog();
OpenFileDialog file = new OpenFileDialog();
...
0
votes
1answer
54 views
Open File as Authenticated User
How can I open a file (System.IO.FileStream) as the user running the browser (User.Identity.Name) rather than the local network account on the server?
Request: If applicable, edit post with proper ...
4
votes
0answers
89 views
Reading a file from a network share sets its creation time to its last write time
When I read a file from a network share it updates the creation time to the last write time. This causes me problems with System.Configuration.Configuration because it thinks the file has changed and ...
4
votes
5answers
86 views
Good coding practice when saving data to files in .net
To give a bit of a background.
I have created an application that allows users to save settings and then recall the settings at a later date. To do this I have created some serializable objects. I ...
0
votes
3answers
220 views
Prune simple text log file using C# .NET 4.0
An external Windows service I work with maintains a single text-based log file that it continuously appends to. This log file grows unbounded over time. I'd like to prune this log file periodically to ...
2
votes
1answer
420 views
Check if file or parent directory exist given a possible full file path
Given a possible full file path, I'll example with C:\dir\otherDir\possiblefile I'd like to know of a good approach to finding out whether
C:\dir\otherDir\possiblefile File
or
C:\dir\otherDir ...
0
votes
3answers
31 views
File.GetAttributes syntax
I am trying to debug an application I'm not familiar with.
Somewhere in the code, I see this :
File.GetAttributes(FileName) _
.Equals(FileAttributes.Archive | FileAttributes.ReadOnly)
What ...
1
vote
2answers
143 views
Write text to a .CS file just before end of the two braces
I have a requirement, in it I have to do the following things:
Generate code dynamically
Write the code into an existing .cs file
I have to add the code just before the last two braces of the class ...
0
votes
0answers
84 views
Moving a file from a directory to a network share programmatically
I am attempting to write a process that will move a file from a directory on a server, to a network share, that will not be on that computer. The methodology worked just fine when moving from my ...
1
vote
4answers
471 views
combine multiple files into single file
Code :
static void MultipleFilesToSingleFile(string dirPath, string filePattern, string destFile)
{
string[] fileAry = Directory.GetFiles(dirPath, filePattern);
...
0
votes
2answers
76 views
How do I verify that a string supplied file path is in a valid directory format?
I have a reasonably straight-forward question here but I seem to find myself revisiting each time I have to deal with the validation of file paths and names. So I'm wondering if there is a method ...
0
votes
1answer
160 views
get FileInfo for HttpPostedFileBase
Is there a simple way to get the FileInfo object from an HttpPostedFileBase? I realize I can save the file then do something like DirectoryInfo.GetFiles and then loop through the files looking for my ...
0
votes
7answers
168 views
.NET issues with FileStream
I am trying to create a FileStream from a file with the following line:
Dim fStream As FileStream = New FileStream(destinationPath, FileMode.Create, FileAccess.Read)
When I do this, I get an error ...
4
votes
1answer
150 views
Non English characters not preserved when rewriting text
I've an issue on a customer site where lines containing words like "HabitaþÒo" get mangled on output. I'm processing a text file (pulling out selected lines and writing them to another file)
For ...
1
vote
1answer
76 views
How to remove filename capitalization difference?
I have hit another roadblock and need some help:
In windows, a filename like "A330 amu.jpg" is exactly the same as "a330 amu.jpg". In VB.NET, "A330 amu.jpg" is not the same as "a330 amu.jpg". Is there ...
1
vote
1answer
57 views
Why won't the Windows ERASE command register an event on the FileSystemWatcher under Windows Server?
I have a program that watches for the creation and deletion of specific files in order to perform specific actions. We use the .NET FileSystemWatcher to monitor activity around these specific files. ...
0
votes
1answer
86 views
Get file with particular extension and check the size of the file
I am trying to go into a folder and look for files with extension .abc, these files will come and go in this folder but what i want to know is if this file exists and size of the file is greater than ...
0
votes
3answers
77 views
Parsing and reading with threading?
I have a lot of files with a lot of size. They all need to be parsed and it takes quite long time. So, I came up with a idea: While one thread reads a file(harddisk's reading speed is the bottle-neck ...
-1
votes
1answer
105 views
Issue to load file from path using SQL Server 2005
I've done a .Net Web Service Client to send a file trough it and it works smoothly; but when I use that Application from a Store Procedure from SQL Server 2005 like this:
exec master.dbo.xp_cmdshell ...
3
votes
1answer
69 views
Why isn't this working?
I am trying to just write an array of strings to a file, which SHOULD normally be an easy thing to do. However the following trivial code is throwing an IOException saying that the file is in use by ...
1
vote
4answers
203 views
Extracting data from file using regex - match line at a time or entire file?
I have a program that reads each line of file, extracting data according to specific format, defined by a regular expression. Instead of calling Match() multiple times against each line in the file, ...
0
votes
1answer
68 views
Accessing same file from multiple instances of application
I have noticed alot of "Cannot access file because it is being used by another process" errors in my fogbugz reports. I am geussing this might have to do with the file not being closed after it has ...
0
votes
0answers
211 views
File access error - already in use when reading from file (vb.NET 2.0)
Using:
Dim fileStream as System.IO.FileStream = System.IO.File.Open(filename, FileMode.Open)
as opposed to (see end of line):
Dim fileStream as System.IO.FileStream = ...
1
vote
5answers
347 views
Log File Rotation IOException
I've got a log file rotation function that looks like this:
private static void RotateLogs()
{
FileInfo LogFile = new FileInfo(@"C:\temp\dataTransferErrorLog.txt");
if ...
1
vote
1answer
74 views
How to get list of all valid folder and file characters for Windows file system paths in .Net
System.IO.Path.GetInvalidPathChars() gives list of invalid characters.
But I need to have list of all valid characters.
First and simple idea that comes into mind is to iterate from 0 to 255 and ...
0
votes
2answers
57 views
How To Rectrict Access to the Files in File System(ASP.NET Web application directory)?
am working on a ASP.Net Web Applications. In that user can upload documents and they can view the same when they required. These uploads kept in the file system(path:- WebApp/Uploads/Docs). This will ...
2
votes
2answers
260 views
Better way to handle asynchronous log writing
public static class LogWriter
{
private static ReaderWriterLockSlim writeLock = new ReaderWriterLockSlim();
public static void WriteExceptionLog(string content)
{
#if DEBUG
...
0
votes
1answer
67 views
Write localized string to localized file
I have the following piece of code:
Dim fecha As DateTime = DateTime.Now
Using w As StreamWriter = File.AppendText(fichero.Text)
w.WriteLine(fecha.ToString("dd/MM/yyyy") + vbTab + tiempo.Text + ...
0
votes
2answers
216 views
Saving a text as rtf using a RichtTextBox
I have a vb2010 application and want to save the text as a rtf document.
I do as follow:
Dim rtb As New RichTextBox
rtb.Text = "something"
rtb.SaveFile(myfile)
but the file is saved as an empty ...
1
vote
1answer
71 views
BinaryWriter puts dirty chars at the begin writing in AppendMode [duplicate]
Possible Duplicate:
Why does BinaryWriter prepend gibberish to the start of a stream? How do you avoid it?
The issue occurs during the execution of a NTService which writes many reports on ...
0
votes
1answer
220 views
File access error with FileSystemWatcher
I am using File Watcher (.NET) and always getting an below error-
file is being used by another process.
The above error only comes in Network sharing, i.e. Watch Directory is shared and if someone ...
1
vote
0answers
133 views
SetCreationTime not working on files in a Shared Folder
I'm using the File.SetCreationTime() method to update the creation time of files. It works on files in local folders, but for some reason it doesn't work on a shared network folder. I can create, ...
0
votes
2answers
227 views
Is file being copied right now? [duplicate]
Possible Duplicate:
C# - from time to time check if a file exists and read from it
I'm using file watcher to check if a file was craeted in a directory. If it was, then I want to open it ...
0
votes
0answers
30 views
Exclusive access to a file [duplicate]
Possible Duplicate:
open file in exclusive mode in C#
There is a file my app sometimes need to read from. An app must be sure that no one is using it before it start using it. And while it ...
1
vote
1answer
228 views
Determining copy/write progress with FileSystemWatcher in C#
Context: A team of operators work with large batch files up to 10GB in size in a third party application. Each file contains thousands of images and after processing every 50 images, they hit the save ...

