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);
}
コピーする方法