Are they equavalent? Are they alternative? Is one of them depricated one other? Which one is working better in a ASP.NET web app. sepcially when I was to extract all files of a specific driectory recursively?
Many Thanks in Advance
|
Are they equavalent? Are they alternative? Is one of them depricated one other? Which one is working better in a ASP.NET web app. sepcially when I was to extract all files of a specific driectory recursively? Many Thanks in Advance
| |||
|
feedback
|
|
Directory is a static class that provides static methods for working with directories. DirectoryInfo is an instance of a class that provides information about a specific directory. So for example if you wanted the information about C:\Temp:
If you just wanted the names as strings it might be quicker and easier to avoid creating an instance of DirectoryInfo by using the static methods of Directory.
In short, it really doesn't matter which you use as long as it does what you want. Neither is recommended over the other. | |||
|
feedback
|
Also an important note if you have to do several actions on directory DirectoryInfo will have performance advantage as it will not require security privileges check on each action. | |||
feedback
|
|
DirectoryInfo is (basically) the Directory class but is used in a non-static context. If you are going to be making many calls to the FileSystem, especially when its the same folder or in subdirectory of said folder, MSDN suggests using DirectoryInfo. | |||
|
feedback
|
|
DirectoryInfo has a DirectoryInfo.GetFiles Method that probably meet your requirements. | |||
|
feedback
|
|
Directory
Directory Info Class
| |||
|
feedback
|