Hello Everyone,
I have created a package which zips all the files in a folder and move it to Archive. Everything works fine, but problem is
I have 12 Files in the folder, file size varies from 1mb to 300 mb, in the execute Process Task, I am using particular Arguments.
@ArvhicePath = C:\Users\Desktop\WORK\Tasks\Archive
"a -t7z "+ @[User::ArchivePath] + "FilesZipped" +"_"+
(DT_STR, 4, 1252) MONTH( DATEADD( "mm", 0, Getdate() )) +
(DT_STR, 4, 1252) DAY ( DATEADD( "dd",0, Getdate() )) +
(DT_STR, 4, 1252) YEAR( DATEADD( "YYYY", 0, Getdate() )) +"_" +
Right("0" + (DT_STR,4,1252) DatePart("hh",getdate()),2) +
Right("0" + (DT_STR,4,1252) DatePart("mi",getdate()),2) +
Right("0" + (DT_STR,4,1252) DatePart("ss",getdate()),2) +".zip"+" "+
@[User::Filaname]
Now I expected it would zip all the Files Into Single Zip file, but all the 11 files are distributed into 6 sometimes and 7 or 8 sometimes, with same name.
Is there a Way I could Zip all the files in a Folder into one single Zip File?
Thanks
Thanks, Please Help People When they need..!!! Mark as answered if your problem is solved.