我需要将图像从 C:/images 文件夹复制到我在服务器中运行的 Web 应用程序文件夹中。我使用了以下代码,它在本地应用程序中运行良好,但在服务器中不起作用
string sourcePath = @"D:\images";
//string destinationPath = @"D:\a";
string destinationPath = Server.MapPath("SMSImages") + "\\";
if (System.IO.Directory.Exists(sourcePath))
{
string[] files = System.IO.Directory.GetFiles(sourcePath);
foreach (string s in files)
{
fileName = Path.GetFileName(s);
destFile = Path.Combine(destinationPath, fileName);
File.Copy(s, destFile, true);
}
如何复制