hi i am task to write a console application to get a zip file from the SFTP server, process the files and upload it to server
the folder structure zip file is
mainfile_20170412.zip
i am required to upload file1.pdf - file8.pdf into my Repository server
my code thus far
the folder structure zip file is
mainfile_20170412.zip
- firstFolder
- firstChild.zip
- file1.pdf
- file2.pdf
- file3.pdf
- file4.pdf
- file2.pdf
- file3.pdf
- file4.pdf
- secondFolder
- secondChild.zip
- file5.pdf
- file6.pdf
- file7.pdf
- file8.pdf
- file6.pdf
- file7.pdf
- file8.pdf
i am required to upload file1.pdf - file8.pdf into my Repository server
my code thus far
C#:
using System.IO.Compression;
...
using(ZipArchive archive = ZipFile.OpenRead("mainfile_20170412.zip"))
{
foreach(ZipArchiveEntry entry in archive.Entries)
{
//how do i access firstChild.zip and secondChild.zip from here?
}
}