WPFのメソッドに少し問題がありFile.Copy
ます。私のコードは非常に単純で、実行すると例外が発生します。
Could not find a part of the path 'Images\37c31987-52ee-4804-8601-a7b9b4d439fd.png'.
はImages
相対フォルダです。
これが私のコードです。先ほど言ったように、シンプルで同じコードがコンソール アプリケーションで問題なく動作します。まったく問題ありません。
string filenamae = System.IO.Path.Combine(images, Guid.NewGuid().ToString() + System.IO.Path.GetExtension(imageFile)); ;
System.IO.File.Copy(imageFile, filenamae);
this.ImageLocation = string.Empty;
それで、助けてくれる人がいたら、ありがとう。