473,327 Members | 2,094 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

Directory.Move ---> Losing Session...

I have noticed that the Directory.Move removes the session as soon as the
next Response.Redirect is done. It also appears that .Net framework
constantly monitors all the directories below the root and invalidates the
inproc session. Can this be caught as an exception and ignored.

In the meantime, I have figured out a variant of Directory.Move that seems
to solve this problem.

===========================================
public static bool MoveFolder(string sourcePath, string destPath)
{
FileInfo fi;
DirectoryInfo di;
string destFileName;
String strDesSubDirectory;
try
{
if (
(!Directory.Exists(sourcePath)) ||
(Directory.Exists(destPath))
)
{
return false;
}
Directory.CreateDirectory(destPath);
// Copy the Files
foreach(string srcFileName in Directory.GetFiles(sourcePath))
{
fi = new FileInfo(srcFileName);
destFileName = destPath + @"/" + fi.Name;
File.Move(srcFileName, destFileName);
}
// Create the Directories
foreach (string strSrcSubDirectory in
Directory.GetDirectories(sourcePath))
{
di = new DirectoryInfo(strSrcSubDirectory);
strDesSubDirectory = destPath+ @"\" + di.Name;
return MoveFolder(strSrcSubDirectory, strDesSubDirectory);
}
Directory.Delete(sourcePath, true);
}
catch
{
return false;
}
return true;
}
=============================================
Nov 19 '05 #1
1 1319
jojobar wrote:
(abridged) It also appears that .Net framework
constantly monitors all the directories below the root and invalidates the
inproc session. Can this be caught as an exception and ignored.

ASP.NET monitors its application directory and automatically recompiles
its pages if a change is detected. When this happens you'll loose
session state.

You could prevent this from happening by canceling the Session_End and
Application_End events in global.asax, but I wouldn't recommend doing
this as the side effects wouldn't be justifiable.

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
Nov 19 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Ron Vecchi | last post by:
I know this has been asked before but I out of all the posts I've read regarding using Directory.Move and then the application restarting itself I have found no answer except that Sessions are...
5
by: fbwhite | last post by:
I know this issue has been brought up many times, but I have tried many of the solutions to no avail. I wanted to give my specific case to see if someone could be of any help. We are using the...
0
by: Harald Fichtner | last post by:
Hello, I tried to rename a folder with the following code: .... dir = New DirectoryInfo(sCurrentPath) dir.MoveTo(sNewPath) .... The folder I try to rename is not the root folder. For...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.