Hi
Im doing windows application, in which im uploading a folder to server while uploading i have to open all the images for tagging .. and then save single image to the server
Here is the code im using to import a folder ,but i have to take a single image from folder and do some operation and then save it to server
How to do this?
private void ImportFolderBtn_Click(object sender, EventArgs e)
{
folder_flag = true;
FolderBrowserDialog open1 = new FolderBrowserDialog();
DialogResult result = open1.ShowDialog();
if (result == DialogResult.OK)
{
txtTitle.Text = Path.GetFileName(open1.SelectedPath);
txtCreatedDate.Text = System.DateTime.Now.ToShortDateString();
txtWardrobe.Text = wardrobe;
txtRack.Text = rack;
txtFileName.Text = filename;
scr_folder = open1.SelectedPath;
txtType.Text = "Folder";
}
}