cancel
Showing results for 
Search instead for 
Did you mean: 

Zip file write snap creating zip file with source folder structure , how to avoid file structure

kkishore
New Contributor III

Hi Team,

I am just reading the file from source location and writing the zip file in sldb, but it is creating the zip file with source structure when i unzip.

source file path is : /home/data/interface/inbound/filename.txt
when I unzip it, it has folder structure. here expectation is the zip file should have only file not file location structure

image

1 ACCEPTED SOLUTION

kkishore
New Contributor III

@j.angelevski ,@bojanvelevski,

Thank you , it is working…great

View solution in original post

16 REPLIES 16

j_angelevski
Contributor III

@kkishore,

You can try changing the content-type header as Bojan suggested, but what I found is if I change the content-type header to application/octet-stream just like in your case, it automatically adds the ..bin extension to the file, so what I did is change the header to binary/octet-stream and this removed the extension.

image

kkishore
New Contributor III

@j.angelevski ,@bojanvelevski,

Thank you , it is working…great