多数の画像を保存しようとしていますが、DateTime を使用して、明確で識別可能なファイル名を付けたいと考えています。したがって、正しいパスで文字列を作成し、日時を追加して、スペース、ドット、コロンを削除します。
String imagePath = "D:\\Patienten\\" + username;
imagePath += "\\"+DateTime.Now.ToString();
Console.WriteLine("WithFilename: " + imagePath);
imagePath.Replace(" ", "");
Console.WriteLine("Without \" \" : " + imagePath);
imagePath.Replace(".", "");
Console.WriteLine("Without \".\": " + imagePath);
imagePath.Replace(":", "");
Console.WriteLine("Output format: " + imagePath);
imagePath += ".png";
image.Save(imagePath);
コンソール出力によると、文字列はまったく変化しません。Console.Writeline からのすべての出力文字列が同一であることを意味します。違いが生じる場合に備えて、Visual Studio Express 2010 で c# を使用しています。誰でもここでエラーを見つけることができますか?
前もって感謝します!