Tagged Questions

5
votes
3answers
4k views

DirectoryInfo.GetDirectories() and attributes

I am using DirectoryInfo.GetDirectories() recursively to find the all the sub-directories under a given path. How ever I want to exclude the System folders and there is no clear way for that. In ...
4
votes
4answers
582 views

DirectoryInfo.Delete(True) Doesn't Delete When Folder Structure is Open in Windows Explorer

Assuming I have a folder structure like: C:\MyTemp - MySubFolder If I try to delete this using: Dim path As String = "C:\MyTemp" Dim di As System.IO.DirectoryInfo di = ...
4
votes
3answers
1k views

.NET - Check if directory is accessible without exception handling

I need to go through various directories on the computer (via DirectoryInfo). Some of them aren't accessible, and UnauthorizedAccessException occurs. How can I check directory access without catching ...
4
votes
5answers
1k views

Is there an async version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet?

Is there an asynchronous version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet? I'd like to use them in an F# async block, and it'd be nice to have a version that can be called with ...
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
1answer
105 views

.NET Junction Directories and DirectInfo issues

I am trying to access information under C:\Users\Public\Documents\ which displays as C:\Users\Public\Public Documents\ on explorer. Is there a way to be able to access the DirectoryInfo of a ...
1
vote
2answers
297 views

recording all the files in a large directory

I've got a number of directories with a large number of files in them (~10,000). I want to create a list of these files in my app, and have already threaded the io access so that the app doesn't ...
0
votes
2answers
61 views

FileInfoComparer not sorting correctly (on LastWriteTime)

I have a simple (ASP.NET) web page that lists files of a particular type in a folder and renders them in a ListView. I've tried to sort them by descending LastWriteTime, that is, in reverse date ...
0
votes
1answer
35 views

DirectoryInfo.Exists always returns false during MSTest

I have a little bit of logic at the boundary of my app dealing with creating directories. I would like to test that it actually creates directories as expected, but the DirectoryInfo.Exists property ...
0
votes
3answers
80 views

Find if a directory has a parent

private void anotherMethod() { DirectoryInfo d = new DirectoryInfo("D\\:"); string s = included(d); ... // do something with s } private string included(DirectoryInfo dir) { if (dir ...
0
votes
1answer
54 views

When would one use the “extension” property (inherited from “FileSystemInfo”) of the “DirectoryInfo” class?

The Extension property is inherited from FileSystemInfo. When would you use it? As far as I know, DirectoryInfo represents directories and the actions you can perform on a directory. This would never ...
0
votes
0answers
65 views

How can I convert a DirectoryInfo handle to a user-defined class?

I am working on a project named "file crawler" in visual c++. It will simply index all the files of a specified directory in a file. The user can search this c++ file for a particular file through ...
0
votes
1answer
438 views

DirectoryInfo.GetFiles(searchPattern) is behaving oddly, and returning random files that DON'T match the searchPattern

I've got some old legacy code that I'm maintaining (please forgive the naming, this was written by a non programmer and the application is not important enough to be rewritten): Dim Path3 As String ...