Link to home
Start Free TrialLog in
Avatar of aneilg
aneilgFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Removes Rows in a CSV FIle

I am using SSIS Script Task Editor C#

I have a csv file and I need to delete extra rows that are not needed.

Example:-       9 columns.
Number – Date – ect.

I can have any number of rows.
Then an empty row.

Then unwanted data.

So basically I want to delete all rows after the first empty row.
Avatar of Barry Cunney
Barry Cunney
Flag of Ireland image

Hi aneilig,
One approach may be to use StreamReader and StreamWriter objects in C# in the SSIS Script Task.

With the StreamReader object read the file line by line writing each line out to a temporary file with the StreamWriter object.
Skip(do not write out lines that should be excluded)
In your case, if a given line just read is an empty string, then you can exit the loop

Then copy the clean temp file back over the original file


The following is sample code which you can adapt - the file is passed in as an SSIS variable
 public void Main()
        {

            
                     
            string line = null;
            string FileFullPath = null;
            string IntendedAction = null; 
            string ReturnMessage = null;
            int linecounter = 0;
            bool DTSLogFireAgain = true;

            // Re-write the specified file leaving out the unwanted lines
            try
            {
                // store the path of the current file being processed 
                FileFullPath = Dts.Variables["FileFullPath"].Value.ToString();

                IntendedAction = "Parsing file: " + FileFullPath;

                if (System.IO.File.Exists(FileFullPath))
                {
                    using (StreamReader reader = new StreamReader(FileFullPath))
                    {
                        using (
                                StreamWriter writer1 = new StreamWriter(FileFullPath + ".temp")  // Clean file 
                               
                               )
                        {
                            // Read the file in file line by line
                            while ((line = reader.ReadLine()) != null)
                            {


                                // Keep a record of line number
                                linecounter++;

                                // first check that line is not a blank line 
                                if (line.Length > 0)
                                {
                                   
                                        // if execution gets to here then, not a blank line so write out to temp file 
                                        writer1.WriteLine(line);
                                    
                                }
                                else
                                {
                                    // if execution gets to here then hit a blank line so stop writing out 
                                    break;
                                }

                            }

                            // Do final write and close of newly parsed IN file
                            writer1.Flush();
                            writer1.Close();

                          
                        }

                        // close the original IN file
                        reader.Close();

                    }                                              // End Using file stream reader
                }                                                   // End If file exists
                else   // else load file does not exist
                {
                    throw new System.IO.FileNotFoundException("Parsing: Unable to find file [" + LoadFullFile + "]");
                }

                // Overwrite original file with newly parsed temp file
                if (File.Exists(LoadFullFile + ".temp"))
                {
                    File.Delete(LoadFullFile);
                    File.Move(LoadFullFile + ".temp", LoadFullFile);

                    ReturnMessage = "Success: " + IntendedAction;
                }

                // Set the Pass/Fail flag to TRUE for job success
                Dts.Variables["LoadFileParsedFlag"].Value = true;
            }
            catch (Exception Ex)                // Catch any overall exceptions
            {
                // Set the error message
                ReturnMessage = "Failure: " + IntendedAction + " " + Ex.Message;
                Dts.Variables["ErrorMessage"].Value = ReturnMessage;

                // Set the Pass/Fail flag to FALSE for job failure
                Dts.Variables["LoadFileParsedFlag"].Value = false;
            }

             // Log details of this task to the DTS Log
            Dts.Events.FireInformation(0, "File parsing", ReturnMessage, "", 0, ref DTSLogFireAgain);

            Dts.TaskResult = (int)ScriptResults.Success;
        }
    }
}

Open in new window

Avatar of aneilg

ASKER

thanks i'll give it a go.
Avatar of Mike Tomlinson
If the file is small, then you can load the whole thing into memory, remove the unwanted entries, then overwrite the original without using a temporary file:
            string FileName = @"C:\Users\Mike\Documents\SomeFile.txt";
            List<string> lines = new List<string>(System.IO.File.ReadAllLines(FileName));
            int blankLine = lines.FindIndex(x => x.Trim().Length == 0);
            if (blankLine != -1)
            {
                while(lines.Count > blankLine)
                {
                    lines.RemoveAt(lines.Count - 1);
                }
            }
            System.IO.File.WriteAllLines(FileName, lines.ToArray());

Open in new window

Avatar of aneilg

ASKER

Thanks Barry.

Just a little change works perfect.
Avatar of aneilg

ASKER

I've requested that this question be closed as follows:

Accepted answer: 0 points for aneilg's comment #a40562034

for the following reason:

Perfect.
Hi Aneilg
Please let us know if you are going to accept solutions and award points for this.
I think you should possibly split points between myself and Mike Tomlinson as we both gave you good approaches, each with their own merits.

Thank you
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial