我有以下的 C# 代码, 用于在文本文件目录中引入文本文件, 并且需要在脚本组件输出中添加一列, 这样我就可以在这个循环中捕捉每个文件名, 并将其添加到名为 FILENAME 的列中的每一行。 这是 SSIS 的脚本转换组件的一部分, 所以正常的衍生列任务 wont 工作 。
我如何能做到这一点,因为我似乎不能 创建一个专栏 并只是用它 与var文件的内容充填?
public override void CreateNewOutputRows()
{
foreach (var file in Directory.GetFiles(@"C:PreDataSource2_WTextFilesBatch1", "*.txt"))
{
string _nextLine;
string[] _columns;
char[] delimiters;
delimiters = "|".ToCharArray();
_nextLine = _reader.ReadLine();
string[] lines = File.ReadAllLines(file, Encoding.UTF8);
//Start at index 2 - and keep looping until index Length - 2
for (int i = 3; i < lines.Length - 2; i++)
{ _columns = lines[i].Split( | );
// Check if number of cols is 6
if (_columns.Length > 4)
{
JazzORBuffer.AddRow();
JazzORBuffer.Server = _columns[0];
JazzORBuffer.Country = _columns[1];
JazzORBuffer.QuoteNumber = _columns[2];
JazzORBuffer.DocumentName = _columns[3];
JazzORBuffer.CompanyNameSoldTo = _columns[4];
}
else
{
// Debug or messagebox the line that fails
Thread t = new Thread(() => MessageBox.Show("file" + "Cols:" + _columns.Length.ToString() + " Line: " + lines[i]));
t.SetApartmentState(ApartmentState.STA);
t.Start();
//MessageBox.Show("file" + "Cols:" + _columns.Length.ToString() + " Line: " + lines[i]);
//return;
}
}
}
}
<强度>EDIT 强度>:更新代码布局