Browse Source

add direx

HOME 3 years ago
parent
commit
c16d72da44
3 changed files with 166 additions and 1 deletions
  1. 8 0
      DirEx/DirEx.csproj
  2. 151 0
      DirEx/Program.cs
  3. 7 1
      StrangeTools.sln

+ 8 - 0
DirEx/DirEx.csproj

@@ -0,0 +1,8 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFrameworks>net5.0;net45</TargetFrameworks>
+  </PropertyGroup>
+
+</Project>

+ 151 - 0
DirEx/Program.cs

@@ -0,0 +1,151 @@
+using System;
+using System.IO;
+
+namespace DirEx
+{
+    internal class Program
+    {
+        private static int Main(string[] args)
+        {
+            if (args.Length == 0)
+            {
+                Console.Error.WriteLine("Usage DirEx </f|/d> [/day:<num>] [/dir:<path>] [/pattern:<pattern>] /s");
+                Console.Error.WriteLine(" /f                 limit result to files");
+                Console.Error.WriteLine(" /d                 limit result to directories");
+                Console.Error.WriteLine(" /day:<num>         limit to older <num> days");
+                Console.Error.WriteLine(" /dir:<path>        path to list, default on working directory");
+                Console.Error.WriteLine(" /pattern:<pattern> filter pattern default is *");
+                Console.Error.WriteLine(" /s                 search in sub directories");
+                Environment.ExitCode = -1;
+                Environment.Exit(1);
+                return -1;
+            }
+
+            var dir = Environment.CurrentDirectory;
+            var showFile = false;
+            var showDir = false;
+            DateTime? day = null;
+            var pattern = "*";
+            SearchOption option = SearchOption.TopDirectoryOnly;
+
+            foreach (var arg in args)
+            {
+                var argKv = arg.Split(new[] { ':' }, 2);
+                var k = argKv[0].ToLower();
+                var v = argKv.Length == 2 ? argKv[1] : null;
+
+                switch (k)
+                {
+                    default:
+                        Console.Error.WriteLine($"Unrecognizable param: {k}");
+                        Environment.ExitCode = -1;
+                        Environment.Exit(1);
+                        return -1;
+
+                    case "/dir":
+                        if (string.IsNullOrWhiteSpace(v))
+                        {
+                            Console.Error.WriteLine("Missing argument in /dir");
+                            Environment.ExitCode = -1;
+                            Environment.Exit(1);
+                            return -1;
+                        }
+
+                        dir = v;
+                        break;
+
+                    case "/f": showFile = true; break;
+                    case "/d": showDir = true; break;
+                    case "/pattern":
+                        if (string.IsNullOrWhiteSpace(v))
+                        {
+                            Console.Error.WriteLine("Missing argument in /pattern");
+                            Environment.ExitCode = -1;
+                            Environment.Exit(1);
+                            return -1;
+                        }
+
+                        pattern = v;
+                        break;
+
+                    case "/day":
+                        if (string.IsNullOrWhiteSpace(v))
+                        {
+                            Console.Error.WriteLine("Missing argument in /day");
+                            Environment.ExitCode = -1;
+                            Environment.Exit(1);
+                            return -1;
+                        }
+
+                        if (int.TryParse(v, out var days))
+                        {
+                            day = DateTime.Now.AddDays(-days);
+                        }
+                        else
+                        {
+                            Console.Error.WriteLine("Invalid argument in /day");
+                            Environment.ExitCode = -1;
+                            Environment.Exit(1);
+                            return -1;
+                        }
+                        break;
+                    case "/s":
+                        option = SearchOption.AllDirectories;
+                        break;
+                }
+            }
+
+            if (showFile && showDir)
+            {
+                Console.Error.WriteLine("Conflicted between /f and /d");
+                Environment.ExitCode = -1;
+                Environment.Exit(1);
+                return -1;
+            }
+            if (!showFile && !showDir)
+            {
+                Console.Error.WriteLine("Missing /f or /d");
+                Environment.ExitCode = -1;
+                Environment.Exit(1);
+                return -1;
+            }
+
+            if (showFile)
+            {
+                var entries = Directory.GetFiles(dir, pattern, option);
+                foreach (var item in entries)
+                {
+                    if (day.HasValue)
+                    {
+                        var info = new FileInfo(item);
+                        if (info.LastWriteTime < day) Console.WriteLine(item);
+                    }
+                    else
+                    {
+                        Console.WriteLine(item);
+                    }
+                }
+            }
+
+            if (showDir)
+            {
+                var entries = Directory.GetDirectories(dir, pattern, option);
+                foreach (var item in entries)
+                {
+                    if (day.HasValue)
+                    {
+                        var info = new DirectoryInfo(item);
+                        if (info.LastWriteTime < day) Console.WriteLine(item);
+                    }
+                    else
+                    {
+                        Console.WriteLine(item);
+                    }
+                }
+            }
+
+
+            return 0;
+        }
+    }
+}

+ 7 - 1
StrangeTools.sln

@@ -30,7 +30,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QVCopier", "QVCopier\QVCopi
 EndProject
 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TcpRedirector", "TcpRedirector\TcpRedirector.csproj", "{1299B566-FB2B-46D7-B6F4-BC0D72E10979}"
 EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AudioNTR", "AudioNTR\AudioNTR.csproj", "{A01E5694-1C4D-4E11-A73A-70AEE4D98B2E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AudioNTR", "AudioNTR\AudioNTR.csproj", "{A01E5694-1C4D-4E11-A73A-70AEE4D98B2E}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirEx", "DirEx\DirEx.csproj", "{62A1F458-B9ED-4443-8B94-E24ECF57AC9B}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -86,6 +88,10 @@ Global
 		{A01E5694-1C4D-4E11-A73A-70AEE4D98B2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{A01E5694-1C4D-4E11-A73A-70AEE4D98B2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{A01E5694-1C4D-4E11-A73A-70AEE4D98B2E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{62A1F458-B9ED-4443-8B94-E24ECF57AC9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{62A1F458-B9ED-4443-8B94-E24ECF57AC9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{62A1F458-B9ED-4443-8B94-E24ECF57AC9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{62A1F458-B9ED-4443-8B94-E24ECF57AC9B}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE