mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Fix allowing for the output folder for DFD
This commit is contained in:
@@ -4992,6 +4992,7 @@ namespace SabreTools.Helper
|
|||||||
/// <param name="addBlanks">True if blank items should be created for empty folders, false otherwise</param>
|
/// <param name="addBlanks">True if blank items should be created for empty folders, false otherwise</param>
|
||||||
/// <param name="addDate">True if dates should be archived for all files, false otherwise</param>
|
/// <param name="addDate">True if dates should be archived for all files, false otherwise</param>
|
||||||
/// <param name="tempDir">Name of the directory to create a temp folder in (blank is current directory)</param>
|
/// <param name="tempDir">Name of the directory to create a temp folder in (blank is current directory)</param>
|
||||||
|
/// <param name="outDir">Output directory to </param>
|
||||||
/// <param name="copyFiles">True if files should be copied to the temp directory before hashing, false otherwise</param>
|
/// <param name="copyFiles">True if files should be copied to the temp directory before hashing, false otherwise</param>
|
||||||
/// <param name="headerToCheckAgainst">Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise</param>
|
/// <param name="headerToCheckAgainst">Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise</param>
|
||||||
/// <param name="maxDegreeOfParallelism">Integer representing the maximum amount of parallelization to be used</param>
|
/// <param name="maxDegreeOfParallelism">Integer representing the maximum amount of parallelization to be used</param>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ namespace SabreTools.Helper
|
|||||||
private StreamWriter _log;
|
private StreamWriter _log;
|
||||||
|
|
||||||
// Private required variables
|
// Private required variables
|
||||||
private string _basepath = "Logs" + Path.DirectorySeparatorChar;
|
private string _basepath = "logs" + Path.DirectorySeparatorChar;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initialize a Logger object with the given information
|
/// Initialize a Logger object with the given information
|
||||||
|
|||||||
@@ -89,7 +89,8 @@ namespace SabreTools
|
|||||||
/// <param name="enableGzip">True if GZIP archives should be treated as files, false otherwise</param>
|
/// <param name="enableGzip">True if GZIP archives should be treated as files, false otherwise</param>
|
||||||
/// <param name="addBlankFilesForEmptyFolder">True if blank items should be created for empty folders, false otherwise</param>
|
/// <param name="addBlankFilesForEmptyFolder">True if blank items should be created for empty folders, false otherwise</param>
|
||||||
/// <param name="addFileDates">True if dates should be archived for all files, false otherwise</param>
|
/// <param name="addFileDates">True if dates should be archived for all files, false otherwise</param>
|
||||||
/// <param name="tempDir">Name of the directory to create a temp folder in (blank is current directory</param>
|
/// <param name="tempDir">Name of the directory to create a temp folder in (blank is default temp directory)</param>
|
||||||
|
/// <param name="outDir">Name of the directory to output the DAT to (blank is the current directory)</param>
|
||||||
/// <param name="copyFiles">True if files should be copied to the temp directory before hashing, false otherwise</param>
|
/// <param name="copyFiles">True if files should be copied to the temp directory before hashing, false otherwise</param>
|
||||||
/// <param name="headerToCheckAgainst">Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise</param>
|
/// <param name="headerToCheckAgainst">Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise</param>
|
||||||
/// <param name="maxDegreeOfParallelism">Integer representing the maximum amount of parallelization to be used</param>
|
/// <param name="maxDegreeOfParallelism">Integer representing the maximum amount of parallelization to be used</param>
|
||||||
@@ -113,6 +114,7 @@ namespace SabreTools
|
|||||||
bool addBlankFilesForEmptyFolder,
|
bool addBlankFilesForEmptyFolder,
|
||||||
bool addFileDates,
|
bool addFileDates,
|
||||||
string tempDir,
|
string tempDir,
|
||||||
|
string outDir,
|
||||||
bool copyFiles,
|
bool copyFiles,
|
||||||
string headerToCheckAgainst,
|
string headerToCheckAgainst,
|
||||||
int maxDegreeOfParallelism)
|
int maxDegreeOfParallelism)
|
||||||
@@ -150,6 +152,9 @@ namespace SabreTools
|
|||||||
Files = new SortedDictionary<string, List<DatItem>>(),
|
Files = new SortedDictionary<string, List<DatItem>>(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Clean the temp directory
|
||||||
|
tempDir = (String.IsNullOrEmpty(tempDir) ? Path.GetTempPath() : tempDir);
|
||||||
|
|
||||||
// For each input directory, create a DAT
|
// For each input directory, create a DAT
|
||||||
foreach (string path in inputs)
|
foreach (string path in inputs)
|
||||||
{
|
{
|
||||||
@@ -166,7 +171,7 @@ namespace SabreTools
|
|||||||
// If it was a success, write the DAT out
|
// If it was a success, write the DAT out
|
||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
datdata.WriteToFile("", _logger);
|
datdata.WriteToFile(outDir, _logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise, show the help
|
// Otherwise, show the help
|
||||||
|
|||||||
Reference in New Issue
Block a user