Where is BIN directory?

  • Thread starter Thread starter localhost
  • Start date Start date
L

localhost

I want to get the location of the bin directory, where
the ASP.NET dll files live before they are shadow-
copied.

System.Reflection.Assembly.GetExecutingAssembly() only
shows the shadow copy location, which is not what I want.

Thanks.
 
FileInfo assemblySpot;
assemblySpot = new FileInfo( AppDomain.CurrentDomain.BaseDirectory );

Try that.
 
Back
Top