Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
339 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 ...
7
votes
2answers
498 views

C# Deleting Locked Files & Folders

I am writing an application that updates some drivers. However the drivers are "in use" and can't be deleted unless I restart my computer. So how can I write an application to delete these locked ...
4
votes
3answers
68 views

Weird functionality in .NET's Directory.GetFiles() when search pattern contains 3 chars for extension

I recently bumped into a weird functionality from Microsoft: Let's assume our folder c:\tmp123 contains 3 files - 1.txt 2.txtx 3.txtxt a) Invocation of Directory.GetFiles(@"C:\tmp123", "*.txt") ...
4
votes
2answers
321 views

Directory.CreateDirectory Latency Issue?

I'm trying to create a remote directory, and then write a file to it. Every great once in a while, the application fails with a System.IO.DirectoryNotFoundException while trying to write the file. ...
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
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 ...
2
votes
4answers
454 views

Why Can't I Inherit IO.Directory?

Why can't I create a class in VB.NET that inherits System.IO.Directory? According to Lutz Roeder, it is not declared as NotInheritable! I want to create a utility class that adds functionality to ...
1
vote
1answer
208 views

Prevent Windows Explorer from interfering with Directory operations

Sometimes, no "foo" directory is left after running this code: string folder = Path.Combine(Path.GetTempPath(), "foo"); if (!Directory.Exists(folder)) Directory.CreateDirectory(folder); ...
1
vote
0answers
339 views

UnauthorizedAccessException While Attempting to Change File Permissions

I trying to modify permissions programmatically using a C# windows service that is running under an administrator's account in windows XP. Another program is saving and modifying files on the local ...
1
vote
1answer
3k views

System.IO.Directory.CreateDirectory with permissions for only this current user?

I want the asp application to create a folder that has access only to the account the application was running with (i.e. asp account?) I actually wanna use this one, but I don't know how to use the ...
0
votes
2answers
87 views

How can I detect all the sub folders under a giving main folder?

Assume my path is "c:/myapp/mainfolder/" there are three folder included in the main folder. BTW, It doesn't need to identify separate files under mainfolder. c:/myapp/mainfolder/subfolder1/ ...