DaveWhite
08-21-2008, 12:58 AM
Is there a way to programmatically access the files within the HTTPLOG virtual directory in ASP.Net? I've tried using
string strFileName = Server.MapPath("/httplog/") + "u_ex" + DateTime.Today.AddDays(-1).ToString("yyMMdd") + ".zip";
and it returns the correct file (meaning it finds the path). However, I cannot access the files within in order to have a nightly job mail them to me.
Any suggestions as to how I would get around this?
--Dave
string strFileName = Server.MapPath("/httplog/") + "u_ex" + DateTime.Today.AddDays(-1).ToString("yyMMdd") + ".zip";
and it returns the correct file (meaning it finds the path). However, I cannot access the files within in order to have a nightly job mail them to me.
Any suggestions as to how I would get around this?
--Dave