using ASP.NET 1.1
int PID=(int)Sessio n["PID"];
string FilePath=PF.Get ProjectPath(PID );
if(!Directory.E xists(FilePath) )
Directory.Creat eDirectory(File Path);
the Directory.Exist s always returns false even though the Directory does in
fact exist.
note the FilePath string is a UNC path ( @"\\ServerName\ ..\)
any ideas would be welcome.
the really strange thing is if the directory really does not exist this code
will sucessfully create the directory, so I do not beleive it is a security
issue
Thanks
phil
int PID=(int)Sessio n["PID"];
string FilePath=PF.Get ProjectPath(PID );
if(!Directory.E xists(FilePath) )
Directory.Creat eDirectory(File Path);
the Directory.Exist s always returns false even though the Directory does in
fact exist.
note the FilePath string is a UNC path ( @"\\ServerName\ ..\)
any ideas would be welcome.
the really strange thing is if the directory really does not exist this code
will sucessfully create the directory, so I do not beleive it is a security
issue
Thanks
phil
Comment