How to upload multiple file to FTP in ASP.NET MVC?
With component or other ...
string path = Server.MapPath("~/Image/");
HttpFileCollectionBase MyFileCollection = Request.Files;
HttpPostedFileBase MyFile;
int i ;
int j = MyFileCollection.Count;
int FileLen;
Stream MyStream;
for(i = 0; i < j; i++)
{
MyFile = MyFileCollection[i];
FileLen = MyFile.ContentLength;
byte[] input = new byte[FileLen];
MyStream = MyFile.InputStream;
MyStream.Read(input, 0, FileLen);
for (int Loop = 0; Loop < FileLen; Loop++)
{
MyString = path + input[Loop].ToString();
}
MyFileCollection[i].SaveAs(MyString + ".jpg");
}