我有下面的C#代碼:C#文件訪問錯誤
string selectedFile = "D:\..\IMGP2695.JPG";
MyImage myImage = new MyImage();
Image image = Image.FromFile(selectedFile);
string thumbnail_name = CreateThumbnail(image);
myImage.height = image.Height + "px";
myImage.width = image.Width + "px";
ftp.upload(myImage.internalName, selectedFile, directory);
The process cannot access the file `'D:\..\IMGP2695.JPG'` because it is being used by another process.
我得到這個錯誤時,該代碼嘗試運行ftp.upload
。我知道錯誤意味着什麼,但我不知道該如何處理打開的文件。
你爲什麼要打開它擺在首位? – 2013-04-11 08:08:23
該文件是OpenFileDialog的結果。我沒有明確地打開它。 – 2013-04-11 08:09:26