zip
// Initalize connection before this SqlCommand cmd=new SqlCommand("select zipdat from table",con); //con for sqlconnection //zipdat is column where you stored bytes of zip file con.Open(); byte [] zipbts=(byte[])cmd.ExecuteScalar(); File.WriteAllBytes("C\\myfile.zip",zipbts);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)