After using some of the ways to delete the files from the particular folder like Delete file using Script Task and File System Task in SSIS. We have seen such methods and used logic to get the files from the loop container and process to delete them and the same thing applied for the scripts as well. We also looked for the file deletion which are older than some Retention period with a Script Task also.
In earlier posts we have not used any parameters in the scripts and directly applied folder path and retention period values there. But here I would like to use parameters for the folder path and retention period and pass through the scripts and delete them as per the condition.
1. Let check the files from the target folder.
2. Create parameters and set the values. Here it is going to be delete the files, which are older than 3 days from the E:\ImagesBackup folder in this case.
3. Drag and drop File System Task
4. Put the parameters as ReadOnlyVariables
5. Apply attached script in editor which have additional logic with condition to check the file last modified date and check if older than specified retention period or not. Here you can see the parameters used in the script.
Please note here we need to import system.IO namespace.
6. Turn on the final step and run package. Files older than the specified retention period to get deleted.
You can use the script below for the same as mentioned in the above image,
In earlier posts we have not used any parameters in the scripts and directly applied folder path and retention period values there. But here I would like to use parameters for the folder path and retention period and pass through the scripts and delete them as per the condition.
1. Let check the files from the target folder.
2. Create parameters and set the values. Here it is going to be delete the files, which are older than 3 days from the E:\ImagesBackup folder in this case.
3. Drag and drop File System Task
4. Put the parameters as ReadOnlyVariables
5. Apply attached script in editor which have additional logic with condition to check the file last modified date and check if older than specified retention period or not. Here you can see the parameters used in the script.
Please note here we need to import system.IO namespace.
6. Turn on the final step and run package. Files older than the specified retention period to get deleted.
You can use the script below for the same as mentioned in the above image,
--// You need to apply below one line in "namespaces" region.Hope you liked this post. Stay tuned for more.
using System.IO;
--//You need to apply below lines inplace of // TODO: Add your code here
int RetentionPeriod = Convert.ToInt32(Dts.Variables["User::Period"].Value.ToString());
string directoryPath = Dts.Variables["User::BackupFolder"].Value.ToString();
string[] oldFiles = System.IO.Directory.GetFiles(directoryPath, "*.*");
foreach (string currFile in oldFiles)
{
FileInfo currFileInfo = new FileInfo(currFile);
if (currFileInfo.LastWriteTime < (DateTime.Now.AddDays(-RetentionPeriod)))
{
currFileInfo.Delete();
}
}