Rıza Berkay Ayçelebi Ответов: 1

Как я могу исправить эту проблему пути


Server Error in '/' Application.

Could not find a part of the path 'G:\PleskVhosts\turhangiyim.com\httpdocs\img\Kategoriler\ayyildiz-tim-den-rusya-ya-buyuk-darbe-1448418463.jpg'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'G:\PleskVhosts\turhangiyim.com\httpdocs\img\Kategoriler\ayyildiz-tim-den-rusya-ya-buyuk-darbe-1448418463.jpg'.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[DirectoryNotFoundException: Could not find a part of the path 'G:\PleskVhosts\turhangiyim.com\httpdocs\img\Kategoriler\ayyildiz-tim-den-rusya-ya-buyuk-darbe-1448418463.jpg'.]
   System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +372
   System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) +754
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) +60
   System.IO.FileStream..ctor(String path, FileMode mode) +55
   System.Web.HttpPostedFile.SaveAs(String filename) +94
   System.Web.UI.WebControls.FileUpload.SaveAs(String filename) +24
   ETicaret.Admin.KategoriEkleme.btnGonder_Click(Object sender, EventArgs e) in KategoriEkleme.aspx.cs:21
   System.EventHandler.Invoke(Object sender, EventArgs e) +0
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9819334
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +204
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +12
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +15
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1639

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.2053.0

Я получил такую ошибку, когда загружал фотографию.

Что я уже пробовал:

что я могу сделать с этой ошибкой?Мой хостинг от Godaddy

1 Ответов

Рейтинг:
1

OriginalGriff

Проверьте весь путь: начните с использования сервера.MapPath чтобы определить корневую папку вашего сайта с помощью"~", затем проверьте каждую папку в результирующем пути - вы либо неправильно написали ее часть, забыли папку, либо добавили дополнительную, которой у вас не должно быть.


Rıza Berkay Ayçelebi

   fKategoriResmi.SaveAs(Server.MapPath("~") + "img\\Kategoriler\\" + fKategoriResmi.FileName);

это кодовый блок для загрузки фотографий

OriginalGriff

Итак... вы предполагаете, что сервер.MapPath возвращает строку, заканчивающуюся разделителем путей? Это не...
Не используйте конкатенацию строк для построения пути: используйте путь.Вместо этого объедините:

fKategoriResmi.Сохранить Как(Путь.Комбайн (Сервер.MapPath ( " ~"), " img\\Kategoriler\\", fKategoriResmi.имя файла));

Или

fKategoriResmi.Сохранить Как(Путь.Комбайн (Сервер.MapPath ("~\\img\\Kategoriler\\"), fKategoriResmi.имя файла));

Rıza Berkay Ayçelebi

Большое спасибо!.:) Я исправил свою проблему :)

OriginalGriff

Пожалуйста!