SSIS Package||How to Delete multiple files having similar pattern in a folder?

Опубликовано: 28 Сентябрь 2024
на канале: LearnSQLtoSSIS
937
5

Following are steps to develop package:
1. Create Four Variables:
FileName - String - No value
FilePattern - String - Emp*.txt
FullyQualifiedPath - String - @SourcePath+@FileName
SourcePath - String - provide the path
2. Drag ForEachLoop Container to iterate the files from the source path..
Select For Each File Enumerator
Write two expressions for Directory(SourcePath) and FileSpec (FilePattern) properties
Browse the folder where your files located
Mention Emp*.txt in files
Opt Name and Extension
Select FileName in Variable Mappings
3. Drag File System Task (FST)inside ForEachLoop Container
select Delete File Operation
Change status of IsSourcePathVariable to TURE
Select FullyQualifiedPath variable in Source Variable
Change thr Delay Validation property to True for FST