[SabreTools] Add out for DFD

This commit is contained in:
Matt Nadareski
2017-03-30 18:20:51 -07:00
parent c98b4d0dba
commit 6d515e8c0e
2 changed files with 9 additions and 0 deletions

View File

@@ -299,6 +299,10 @@ Options:
(inside the running folder) is not preferred. This is used for any operations (inside the running folder) is not preferred. This is used for any operations
that require an archive to be extracted. that require an archive to be extracted.
-out= Set the name of the output directory
This sets an output folder to be used when the files are created. If a path
is not defined, the application directory is used instead.
-mt={4} Amount of threads to use -mt={4} Amount of threads to use
Optionally, set the number of threads to use for the multithreaded operations. Optionally, set the number of threads to use for the multithreaded operations.
The default is 4 threads; -1 means unlimited threads created. If the user specifies The default is 4 threads; -1 means unlimited threads created. If the user specifies

View File

@@ -250,6 +250,11 @@ namespace SabreTools
"Set the temporary directory to use", "Set the temporary directory to use",
FeatureType.String, FeatureType.String,
null)); null));
datFromDir.AddFeature("out", new Feature(
new List<string>() { "-out", "--out" },
"Output directory",
FeatureType.String,
null));
datFromDir.AddFeature("mt", new Feature( datFromDir.AddFeature("mt", new Feature(
new List<string>() { "-mt", "--mt" }, new List<string>() { "-mt", "--mt" },
"Amount of threads to use (default 4, -1 unlimted)", "Amount of threads to use (default 4, -1 unlimted)",