Member 12901714 Ответов: 1

Как загрузить файл в приложение 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.

1 Ответов

Рейтинг:
2

Member 10062432

вы можете использовать это, чтобы получить полный путь.

rfilename = openDialog1.InitialDirectory + openDialog1.FileName;


чтобы изменить имя файла, используйте следующее
FileInfo file = new FileInfo("c:\test.txt");
file.Rename("test2.txt");