“ /”应用程序中的服务器错误。找不到路径的一部分

时间:2018-07-20 15:43:50

标签: asp.net vb.net

我正尝试在单击按钮时删除XML文件,这些文件使用以下代码位于我网站上的XML文件夹中(在smarterasp.net托管中):

Protected Sub Button4_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button4.Click
    Dim directoryName As String = MapPath("~/xml/")
    For Each deleteFile In Directory.GetFiles(directoryName, "*.xml", SearchOption.TopDirectoryOnly)
        File.Delete(deleteFile)
    Next
    Label1.Text = "done"
End Sub

但是我遇到了这个错误:

Server Error in '/' Application.
Could not find a part of the path 'C:\Windows\SysWOW64\inetsrv\karary-001- 
site1.htempurl.com\xml'.
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 'C:\Windows\SysWOW64\inetsrv\karary-001- 
site1.htempurl.com\xml'.

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 
'C:\Windows\SysWOW64\inetsrv\karary-001-site1.htempurl.com\xml'.]
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +219
System.IO.FileSystemEnumerableIterator`1.CommonInit() +268
System.IO.FileSystemEnumerableIterator`1..ctor(String path, String 
originalUserPath, String searchPattern, SearchOption searchOption, 
SearchResultHandler`1 resultHandler, Boolean checkHost) +434
System.IO.Directory.GetFiles(String path, String searchPattern, SearchOption 
searchOption) +86
WebApplication1.addTimetable.Button4_Click(Object sender, EventArgs e) in 
C:\Users\MONZER\Desktop\Karary Web 
Site\WebApplication1\addTimetable.aspx.vb:65
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9815014
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) 
+204

什么是获取文件夹的正确方法,我已经尝试过:

1- http://karary-001-site1.htempurl.com/xml/

2- h:\ root \ home \ karary-001 \ www \ site1 \ xml \

3-〜/ xml /

0 个答案:

没有答案