我想浏览 pdf 文件并将它们存储在另一个文件夹中。我已经实现了pdf文件浏览部分。我可以获得所有的pdf文件路径。现在我想将它们保存在另一个文件夹中。有没有办法做到这一点?
//Keep pdf file locations
List<string> pdfFiles = new List<string>();
// Browse pdf and get their paths
private void btnPdfBrowser_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.CheckFileExists = true;
openFileDialog.AddExtension = true;
openFileDialog.Multiselect = true;
openFileDialog.Filter = "PDF files (*.pdf)|*.pdf";
if (openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
foreach (string fileName in openFileDialog.FileNames)
{
pdfFiles.Add(fileName);
}
}
}
private void btnUploadFile_Click(object sender, EventArgs e)
{
string installedPath = Application.StartupPath + "pdf";
//Check whether folder path is exist
if (!System.IO.Directory.Exists(installedPath))
{
// If not create new folder
System.IO.Directory.CreateDirectory(installedPath);
}
//Save pdf files in installedPath ??
}