Is there a provider I can use to query the file-system and get the contents into a dataset?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
All the classes that one might need to query the file system (whatever this means) are situated in the
System.IOnamespace.Depending on the querying you need there are classes like:
There are useful methods such as EnumerateFiles for example.
As far as the DataSet part is concerned, well, I guess once you have queried you could easily turn the results into a DataSet using LINQ.