Tagged Questions

System.IO is a namespace of the .NET framework. It contains types that allow reading and writing to files and data streams, and types that provide basic file and directory support.

learn more… | top users | synonyms

26
votes
6answers
16k views

how to delete all files and folders in a directory?

Using C#, how can I delete all files and folders from a directory, but still keep the root directory? I have this System.IO.DirectoryInfo downloadedMessageInfo = new ...
26
votes
12answers
13k views

Can you call Directory.GetFiles() with multiple filters?

I am trying to use the Directory.GetFiles() method to retrieve a list of files of multiple types, such as mp3's and jpg's. I have tried both of the following with no luck: ...
20
votes
8answers
3k views

How do I check whether File.Delete() will succeed without trying it, in C#?

In C#, System.IO.File.Delete(filePath) will either delete the specified file, or raise an exception. If the current user doesn't have permission to delete the file, it'll raise an ...
19
votes
4answers
8k views

Better way to check if Path is a File or a Directory ? (C#, .NET)

I am processing a TreeView of directories and files, users can select either a file, or a directory and then do something with it. This requires me to have a method which performs different actions if ...
13
votes
9answers
2k views

How to test if a file is currently being written to

I have an application that must check a folder and read any files that are copied into it. How do I test if a file in that folder is currently being written to? I only want to read files that have had ...
11
votes
3answers
4k views

Recursive File Search in .net

I need to search a drive (C:, D: etc) for a partuicular file type (extension like .xml, .csv, .xls). How do I preform a recursive search to loop all directories and inner directories and return the ...
10
votes
8answers
3k views

GetFiles with multiple extentions

How do you filter on more than one extension? I've tried: FileInfo[] Files = dinfo.GetFiles("*.jpg;*.tiff;*.bmp"); FileInfo[] Files = dinfo.GetFiles("*.jpg,*.tiff,*.bmp");
10
votes
5answers
12k views

How to sort an array of FileInfo[] C#

I have the following code DirectoryInfo taskDirectory = new DirectoryInfo(this.taskDirectoryPath); FileInfo[] taskFiles = taskDirectory.GetFiles("*" + blah + "*.xml"); I would like to sort the list ...
9
votes
3answers
227 views

Get file name from byte array or Stream

Is possible get filename from byte array or stream? I do not want to save the file. I just want to retrieve the name.
9
votes
1answer
2k views

In MVC 2, How would you determine a file exists at the server using C#?

I know you can do this: if( System.IO.File.Exists( @"C:\INetPub\MVCWebsite\Content\Images\image.jpg") ) { ... } and you can do this to reference files in MVC: ...
9
votes
4answers
3k views

IO 101: Which are the main differences between TextWriter, FileStream and StreamWriter?

Let me first apologize if this question could sound perhaps sort of amateurish for the seasoned programmers among you, the thing is I've been having many arguments about this at work so I really want ...
8
votes
1answer
183 views

Caching FileInfo properties in C#

From the MSDN documentation for the FileInfo.Name property, I see that the data for the property is cached the first time it is called and will only be updated subsequently by using the Refresh ...
8
votes
4answers
3k views

How to test if directory is hidden in C#?

I have this loop: foreach (DirectoryInfo dir in downloadedMessageInfo.GetDirectories()) { if (dir.Attributes != FileAttributes.Hidden) { ...
8
votes
3answers
2k views

Getting Original Path from FileStream

Given a System.IO.FileStream object, how can I get the original path to the file it's providing access to? For example, in the MyStreamHandler() function below, I want to get back the path of the ...
7
votes
2answers
334 views

Performance problems counting the files with System.IO.Directory.GetFiles()

I use in a C# program System.IO.Directory.GetFiles(dirname, "*.*", System.IO.SearchOption.AllDirectories).Length; to count to number of files in a directory(and its subdirectories) on a share. I do ...
6
votes
9answers
2k views

Exclude a file extension in System.IO.Directory.GetFiles()

Is there a way to get a file count in a folder, but I want to exclude files with extension jpg? Directory.GetFiles("c:\\Temp\\").Count();
6
votes
8answers
6k views

How do I get a directory size (files in the directory) in C#?

I want to be able to get the size of one of the local directories using C#. I'm trying to avoid the following (pseudo like code), although in the worst case scenario I will have to settle for this: ...
6
votes
8answers
17k views

Copy Folders in C# using System.IO

I need to Copy folder C:\FromFolder to C:\ToFolder Below is code that will CUT my FromFolder and then will create my ToFolder. So my FromFolder will be gone and all the items will be in the newly ...
5
votes
1answer
264 views

Stream - Seek(0, SeekOrigin.Begin) or Position = 0

When you need to reset a stream to beginning (e.g. a memorystream) is it best practice to use stream.Seek(0, SeekOrigin.Begin); or stream.Position = 0; I've seen both work fine, but wondered ...
4
votes
2answers
112 views

Why is System.IO implemented this way

Took me a while to find this bug in my code. Trying to create a temporary test directory: Path.Combine("C:", "test"); Directory.CreateDirectory(path); So this doesn't create the directory C:\test. ...
4
votes
2answers
109 views

How to get info about disk filesystem?

Is possible to read info about the filesystem of a physical disk (e.g., if it is formatted as NTFS, FAT, etc.) using .NET C# 3.5? If so, which class should I use to determine this?
4
votes
2answers
351 views

Difference between File.Replace and (File.Delete+File.Move) in C#

Today I run into a strange problem: Since a year and several versions / tests of the application the following code has been used successfully to replace a file with an other. File.Replace(path + ...
4
votes
3answers
213 views

Is there a Kernel32 API for different System.IO API"S

In my application we have requirement where in we have to do System.IO operation on depth longer than 256 characters and in this scenario all the System.IO API's are failing. We are using below API's. ...
4
votes
2answers
263 views

Please confirm change in path length related behaviour in .NET 4.0

can someone confirm that microsoft changed path length related behaviour of some classe from System.IO in .NET 4.0? For example the code below runs fine on .NET 3.5 but on 4.0 throws a ...
4
votes
3answers
2k views

What is the difference between File.ReadAllLines() and File.ReadAllText()?

What is the difference between File.ReadAllLines() and File.ReadAllText()? Thank you very much.
4
votes
4answers
403 views

Is there a Base64Stream for .NET? where?

If I want to produce a Base64-encoded output, how would I do that in .NET? I know that since .NET 2.0, there is the ICryptoTransform interface, and the ToBase64Transform() and FromBase64Transform() ...
4
votes
3answers
1k views

Remove invalid (disallowed, bad) characters from FileName (or Directory, Folder, File)

I've wrote this little method to achieve the goal in the subj., however, is there more efficient (simpler) way of doing this? I hope this can help somebody who will search for this like I did. var ...
4
votes
2answers
664 views

How to check if a file is in use?

Is there any way to first test if a file is in use before attempting to open it for reading? For example, this block of code will throw an exception if the file is still being written to or is ...
3
votes
7answers
1k views

Multiple file-extensions searchPattern for System.IO.Directory.GetFiles

What is the syntax for setting multiple file-extensions as searchPattern on Directory.GetFiles()? For example filtering out files with .aspx and .ascx extensions. // TODO: Set the string ...
3
votes
3answers
422 views

File.Copy hangs on corrupt file

I've been trying to copy files from an old drive to a new drive. Problem is, the old drive has (I can only assume) some corrupted places on the disk, and any attempt to read from some of these files ...
3
votes
4answers
458 views

Way to get unique filename if specified filename already exists (.NET)

Is there a built in .NET function to get a unique filename if a filename already exists? So if I try and save MyDoc.doc and it already exists, the file will save with name MyDoc(1).doc, the same way a ...
3
votes
1answer
2k views

“Access to the system path is denied” when using 'System.IO.Directory.Delete'

I'm using System.IO.Directory.Delete and trying to delete system folders such as 'My Music', 'My Videos' etc, but I get errors similar to "Access to the system path 'C:\users\jbloggs\Saved Games' is ...
3
votes
2answers
172 views

Code review: Determining whether a folder exists, given the full file path?

With a function being passed a full path to a file, such as C:\someFolder\anotherFolder\someXML.xml, determine whether the folder exists. Is there a smarter/better/more elegant way of doing this? ...
3
votes
7answers
1k views

Program to corrupt a file?

I know it might seem ridiculous that you would purposely want to corrupt a file, but I assure you its for a good reason. In my app, I have a lot of xml serialization going on. This in turn also ...
3
votes
1answer
633 views

Why Can't I do String.Replace() on a IO.File.ReadAllText() string?

I am using System.IO.FIle.ReadAllText() to get the contents of some template files that I created for email content. Then I want to do a Replace on certain tokens within the files so I can add dynamic ...
3
votes
1answer
3k views

Calling Directory.Exists(“\\SERVER\SHARE\”) in Setup Project

I have a .NET Setup Project to which I've added a custom installer action. During the setup process, the user has to provide a path (which often is a UNC path) to a share on their file server. I ...
3
votes
2answers
4k views

c# - Function to replicate the folder structure in the file path

I need a simple function which will take a FileInfo and a destination_directory_name as input, get the file path from the fileinfo and replicate it in the destination_directory_name passed as the ...
3
votes
6answers
1k views

What is the best method to find the newest last modified time of a folder of files?

I have a folder with subfolders of files. I would like to get the newest filename by modified time. Is there a more efficient way of finding this short of looping through each folder and file to ...
2
votes
2answers
262 views

Problems with Streams in C#

I have this code for c# to read all the lines in TestFile.txt but when i finish reading i want to read it again and then put it in a string array (not a List) but when i try do that again it says that ...
2
votes
2answers
135 views

converting \u0040 to @ in C#

The Facebook graph API's return to me the user's email address as foo\u0040bar.com. in a JSON object. I need to convert it to foo@bar.com. There must be a built in method in .NET that changes ...
2
votes
5answers
121 views

C#: Get first directory name of a relative path

How to get the first directory name in a relative path, given that they can be different accepted directory separators? For example: foo\bar\abc.txt -> foo bar/foo/foobar -> bar
2
votes
2answers
105 views

How to show elements from MyComputer folder?

MyComputer folder doesn't have any object in file system. But i need show elements from this folder into ListView (WinForms). I think, it's imposible to get System.IO.DirectoryInfo that represents ...
2
votes
1answer
55 views

Is there a .NET API to return the equivalent extended-path string of a given path?

In NTFS, I can prefix a path with the \\?\ character sequence to denote that it is a path that exceeds the 260-character limit; as such, the file system will interpret the path correctly and avoid ...
2
votes
2answers
392 views

Cannot Watch Folder using FileSystemWatcher in C#

I am attempting to monitor a folder (and its sub-folders) for changes. However, my handler event is never executed. I am using the following code: FileSystemWatcher m_Watcher = new ...
2
votes
5answers
111 views

Text in file is not appended - C#

I've decided to add a logging mechanism to my application so I can catch any errors or exceptions that are thrown. I've noticed that when an entry to the log is created it is not added to the log, it ...
2
votes
5answers
498 views

How can I determine if a subdirectory exists in C#?

In C#, how can one determine if a subdirectory exists? Is this neccesary when calling CreateSubDirectory?
2
votes
2answers
729 views

Send multiple messages between a native named pipe and a System.IO named pipe

I need to send multiple messages between a native named pipe and a System.IO named pipe. I got the code for both ends of this communication from the All-In-One Code Framework (IPC and RPC). Server: ...
2
votes
1answer
172 views

Reading a file opened from “Scanners and Cameras” throws UnauthorizedAccessException

Our application requires a user to select a photograph from their camera. The cameras I tested with while adding this feature would all appear as a drive letter in "My Computer" so loading and ...
2
votes
1answer
472 views

File.Exists() and File Access Synchronization across processes

I have a couple applications running in separate processes that each write to a central xml doc on the harddrive. I am using a named mutex to synchronize access to the file - but get the following ...
2
votes
3answers
1k views

File.Delete failing when Image.FromFile was called prior it, despite making copy of loaded image and destroying original one

UPDATED I used below solutions (loading Image from stream), but get new problem. img object is absolutely correct Image class instance with all field filled with correct values. But calling ...

1 2 3