[Solved] Enumerate files in a folder using SSIS Script Task [closed]
Configure two variables: read-only string User::download_path and read-write object User::files_to_process to receive the list of files. public void Main() { bool fireAgain = true; var filesToProcess = new System.Collections.ArrayList(); var filesInDirectory = new System.Collections.ArrayList(); var download_path = (String)Dts.Variables[“User::download_path”].Value; // Find for example all csv files in the directory which are having size > 0 var … Read more