Tagged Questions
The getdirectories tag has no wiki summary.
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
1answer
126 views
Variation in performance when using GetDirectories
I have a production performance issue that I'm stumped on. I'm hoping that someone has seen something similar or at least has a few troubleshooting techniques.
I support an inherited asp.net web ...
3
votes
3answers
106 views
Quicky estimate a number of subfolders
My C# 3.0 application should traverse through folders and do some stuff within. To show a meaningful progress, I need to know total folder count.
If I use Directory.GetDirectories with AllDirectories ...
3
votes
3answers
2k views
How can I read the files in a directory in sorted order?
When I read a directory in Perl with opendir, readdir, and closedir, the readdir function doesn't seem to read the files in any specific order (that I can tell).
I am reading a directory that has ...
2
votes
2answers
98 views
Can not access sub directories without '\' (backward slash) in C#
I had a bizarre situation when try to access the sub directories of my c: drive:
first I tried the following code, the output was 0 (zero):
MessageBox.Show(new ...
2
votes
3answers
467 views
c# exclude hyphen from directory.getdirectories
I would like to use the Directory.GetDirectories method to get all directories with some exclusions. In particular I need to exclude directories that have a hyphen in them. I already found out ...
1
vote
0answers
18 views
get direction map custom from address?
i have one problem with get direction map.
1)how to load default address is from address.
2)when i click to get direction how to display custom from address.
<script type="text/javascript" ...
1
vote
1answer
88 views
c# How do you thread a recursive directory search?
I'm trying to thread this below function so that the background form can continue to be moved around and won't 'freeze', can anyone assist me in doing this?
public IEnumerable<string> ...
1
vote
3answers
89 views
Is the order of directories returned by Directory.GetDirectories() guaranteed to be ordered?
Although not mentioned in the documentation, Directory.GetDirectories() appears to always return a lexicographically-sorted array of directory names. Is it safe to rely on this implementation detail ...
0
votes
4answers
58 views
How to output each file and folder in directory hierarchy
I'm looking for a way to all files and folders and files in those folders.
As an example.
if I have
- Root
+ file1
+ file2
-- Directory
-+ file1
-+ file2
---Directory
--+ file1
--+ file2
I would ...
0
votes
1answer
152 views
Exclude Dir From path
I want to Get all dirs from my drive Excluding "System Volume Information"
The problem is i am sending args to another console application for compressing though. and i'd have to send only single ...
0
votes
3answers
3k views
Directory.GetFiles works, Directory.GetDirectories doesn't on the same directory
I have a simple file selector on my web application which uses Directory.GetFiles and Directory.GetDirectories to produce the UI. This works perfectly on my localhost, but when I upload it to my ...