Update
This commit is contained in:
@@ -3,26 +3,17 @@
|
||||
public class CsvOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// The directory to input csv and sql file.
|
||||
/// MyDumper导出的CSV文件目录
|
||||
/// </summary>
|
||||
public string InputDir { get; set; } = "./";
|
||||
/// <summary>
|
||||
/// The output directory.
|
||||
/// </summary>
|
||||
public string OutputDir { get; set; } = "./Output";
|
||||
|
||||
/// <summary>
|
||||
/// The ASCII char that fields are enclosed by. Default is '"'.
|
||||
/// 字符串的包围符号,默认为双引号"
|
||||
/// </summary>
|
||||
public char QuoteChar { get; set; } = '"';
|
||||
|
||||
/// <summary>
|
||||
/// The ASCII char that fields are separated by. Default is ','.
|
||||
/// 每个字段的分割符,默认逗号,
|
||||
/// </summary>
|
||||
public char DelimiterChar { get; set; } = ',';
|
||||
|
||||
/// <summary>
|
||||
/// The max number of threads to use.
|
||||
/// </summary>
|
||||
public int MaxThreads { get; set; } = 12;
|
||||
public string Delimiter { get; set; } = ",";
|
||||
}
|
Reference in New Issue
Block a user