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 ...
0
votes
1answer
36 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
4answers
128 views
How can i get the listing of files and directories of a path using C++?
I am using the directory class to get this information but unable to assign this data to a data member of my own class. i am doing an oop project. Furthermore,I want to use the concept of ...
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
2answers
138 views
dirInfoObj.GetFiles(“*.jpg,*.png”) does not return any files
If I do simply
dirInfoObj.GetFiles("*.jpg")
, it will return the 2 jpg's I have there. But if I try and get both jpg's and png's, like
dirInfoObj.GetFiles("*.jpg,*.png")
, it won't return ...