using System.IO;
{
OpenFileDialog op1 = new OpenFileDialog();
op1.Multiselect = true;
op1.ShowDialog();
op1.Filter = "allfiles|*.xls";
textBox1.Text = op1.FileName;
pictureBox1.ImageLocation = op1.FileName;
int count = 0;
string[] FName;
foreach (string s in op1.FileNames)
{
FName = s.Split('\\');
File.Copy(s, "Path" + FName[FName.Length - 1]);
count++;
}
MessageBox.Show(Convert.ToString(count) + " Image Uploaded");
}
it may help u ..!!