Как загрузить файл в приложение windows
DialogResult result = openDialog1.ShowDialog(); string fullpath = openDialog1.FileName; string extension = Path.GetExtension(fullpath); File.Copy(fullpath, @"C:\Users\Acer\Documents\Visual Studio 2010\Projects\sqlprocedure\sqlprocedure\Resources\Document\" + Filename + extension); What I have tried: I Am try with this but it take same file name same. I also cant get the path where copy file location File is save please help me.