We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e342448 commit 1fa9345Copy full SHA for 1fa9345
NDecrypt/Program.cs
@@ -33,13 +33,13 @@ public static void Main(string[] args)
33
34
for (int i = 0; i < options.InputPaths.Count; i++)
35
{
36
- if (File.Exists(args[i]))
+ if (File.Exists(options.InputPaths[i]))
37
38
- ProcessFile(args[i], options);
+ ProcessFile(options.InputPaths[i], options);
39
}
40
- else if (Directory.Exists(args[i]))
+ else if (Directory.Exists(options.InputPaths[i]))
41
42
- foreach (string file in Directory.GetFiles(args[i], "*", SearchOption.AllDirectories))
+ foreach (string file in Directory.GetFiles(options.InputPaths[i], "*", SearchOption.AllDirectories))
43
44
ProcessFile(file, options);
45
0 commit comments