HOME 1 year ago
parent
commit
e30fa0b926
1 changed files with 2 additions and 1 deletions
  1. 2 1
      DirEx/Program.cs

+ 2 - 1
DirEx/Program.cs

@@ -89,6 +89,7 @@ namespace DirEx
                             return -1;
                         }
                         break;
+
                     case "/s":
                         option = SearchOption.AllDirectories;
                         break;
@@ -102,6 +103,7 @@ namespace DirEx
                 Environment.Exit(1);
                 return -1;
             }
+
             if (!showFile && !showDir)
             {
                 Console.Error.WriteLine("Missing /f or /d");
@@ -144,7 +146,6 @@ namespace DirEx
                 }
             }
 
-
             return 0;
         }
     }