Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExtractCommand.cs « Symbols « UVtools.Cmd - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c48d2d298b1128eec2e30c138c7bf297f77d2ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */

using System.CommandLine;
using System.IO;

namespace UVtools.Cmd.Symbols;

internal static class ExtractCommand
{
    internal static Command CreateCommand()
    {
        var noOverwriteOption = new Option<bool>("--no-overwrite", "If the output folder exists do not overwrite");

        var command = new Command("extract", "Extract file contents to a folder")
        {
            GlobalArguments.InputFileArgument,
            GlobalArguments.OutputDirectoryArgument,
            noOverwriteOption,
        };

        command.SetHandler((inputFile, outputDirectory, noOverwrite) =>
            {
                var path = outputDirectory is null
                    ? Path.Combine(inputFile.DirectoryName!, Path.GetFileNameWithoutExtension(inputFile.Name))
                    : outputDirectory.FullName;

                if (noOverwrite && Directory.Exists(path))
                {
                    Program.WriteLineError($"{path} already exits! --no-overwrite is enabled.");
                    return;
                }

                var slicerFile = Program.OpenInputFile(inputFile);

                Program.ProgressBarWork($"Extracting to {Path.GetFileName(path)}",
                    () =>
                    {
                        slicerFile.Extract(path);
                    });

            }, GlobalArguments.InputFileArgument, GlobalArguments.OutputDirectoryArgument, noOverwriteOption);

        return command;
    }
}