Class AudioFileCheck.Arguments
Inheritance
AudioFileCheck.Arguments
Assembly: AnalysisPrograms.dll
Syntax
[Command("AudioFileCheck", Description = "[BETA] Writes information about audio files to a csv file.", ExtendedHelpText = "Note: Specify a directory to process or an input file containing file paths, but not both.")]
public class Arguments : SubCommandBase
Properties
|
Improve this Doc
View Source
Declaration
[Option(Description = "Directory containing audio files.")]
[DirectoryExists]
public string InputDirectory { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
[Option(Description = "A text file containing one path per line.", ShortName = "")]
[FileExists]
[LegalFilePath]
public string InputFile { get; set; }
Property Value
|
Improve this Doc
View Source
OutputFile
Declaration
[Option(Description = "Csv file to write audio file information to.")]
[LegalFilePath]
public string OutputFile { get; set; }
Property Value
|
Improve this Doc
View Source
Recurse
Declaration
[Option(Description = "true to recurse into subdirectories (if processing directories).")]
public bool Recurse { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Execute(CommandLineApplication)
Declaration
public override Task<int> Execute(CommandLineApplication app)
Parameters
Type |
Name |
Description |
McMaster.Extensions.CommandLineUtils.CommandLineApplication |
app |
|
Returns
Overrides
Extension Methods