English 中文(简体)
正在使用 c# 导入文件目录, 需要一个文件名列吗?
原标题:Importing directory of file using c#, need a filename column?
  • 时间:2012-05-24 11:07:46
  •  标签:
  • c#
  • ssis

我有以下的 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 :更新代码布局

最佳回答

您必须在脚本转换编辑器 Inputs and result 窗格中的输出中添加一列。

这将让栏目为您的脚本所访问 。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签