Example #1
0
 private static IEnumerable <string> GetFilesRecursively(
     DirectoryAct dir, string root, int depth)
 {
     if (depth == 0)
     {
         return(Enumerable.Empty <string>());
     }
Example #2
0
            static bool IsNormalDirectory(DirectoryAct d)
            {
                var a = d.Attributes;

                return((a & FileAttributes.Hidden) == 0);
            }