how to get hidden folder from string array
Posted
by Amit Kr. Ghosh
on Stack Overflow
See other posts from Stack Overflow
or by Amit Kr. Ghosh
Published on 2010-05-29T16:08:51Z
Indexed on
2010/05/29
16:12 UTC
Read the original article
Hit count: 282
c#
folderBrowserDialog1.Reset(); folderBrowserDialog1.ShowDialog(); if (folderBrowserDialog1.SelectedPath != "") { sourcetxt.Text = folderBrowserDialog1.SelectedPath; string[] path = Directory.GetDirectories(folderBrowserDialog1.SelectedPath); }
i am write this code.i have get all folder with hidden folder of this array name of path .But i trying to get only hidden folder of this array (array name path).please please solve this problem any one.
Thankig You.
© Stack Overflow or respective owner