本文介绍了想要避免系统卷信息文件夹路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好.....

我想搜索目录中的所有子目录
我的代码是

Hi Everyone.....

I want to search all sub directory within a directory
my code is

DirectoryInfo di = new DirectoryInfo(Search_Path);
DirectoryInfo[] direcorries = di.GetDirectories("*.*", SearchOption.AllDirectories);



但是这里我有一个例外



but here i got an exception

exception {"Access to the path 'F:\\System Volume Information\\' is denied."}	System.Exception {System.UnauthorizedAccessException}



但是如果我用



but if i used

DirectoryInfo di = new DirectoryInfo(dir);
DirectoryInfo[] direcorries = di.GetDirectories("*.*", SearchOption.TopDirectoryOnly);


那么它不会通过异常....

为什么会这样?

我想避免使用此系统卷信息"文件夹.我该怎么做??


then it does not through an exception ....

why this happens?

I want to avoid this System Volume Information folder. How can i do that ??

推荐答案


这篇关于想要避免系统卷信息文件夹路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 08:12