ASP.NET:文件夹删除后会话已过期

时间:2012-05-24 09:28:58

标签: c# asp.net

我正在使用代码将文件移动到另一个文件夹并删除ASP.NET应用程序中的先前文件夹和文件。删除文件夹后,我的会话已过期。如何限制会话值到期。

3 个答案:

答案 0 :(得分:3)

非常正确。发生这种情况是因为删除会对ASP.NET应用程序的文件夹树进行更改,这会强制应用程序进行回收。见这里:http://www.geekays.net/post/2008/10/14/ASPNET-webdomain-recycle-on-subfolder-changes.aspx

答案 1 :(得分:1)

在Global.asax页面

中使用以下代码
void Application_Start(object sender, EventArgs e) 
{
    System.Reflection.PropertyInfo p = typeof(System.Web.HttpRuntime).GetProperty("FileChangesMonitor", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Static);
    object o = p.GetValue(null, null);
    System.Reflection.FieldInfo f = o.GetType().GetField("_dirMonSubdirs", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.IgnoreCase);
    object monitor = f.GetValue(o);
    System.Reflection.MethodInfo m = monitor.GetType().GetMethod("StopMonitoring", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
    m.Invoke(monitor, new object[] { }); 
}

答案 2 :(得分:0)

请在globle.asax

中的Session_End方法中编写目录删除代码
void Session_End(object sender, EventArgs e)
{
    SampleDelete();
}
private static void SampleDelete()
{
    try
    {
        string samplesss = AppDomain.CurrentDomain.BaseDirectory + "\\temp";
        string[] array1 = System.IO.Directory.GetDirectories(samplesss);
        try
        {
            foreach (string item in array1)
            {
                System.IO.Directory.Delete(item, true);
            }
        }
        catch (Exception ex)
        { }
    }
    catch (Exception ex)
    {
    }
}