When I start my ASP.Net 4.0 web app in debug mode, I'm getting the following exception:

System.Web.HttpException occurred Message=Invalid file name for file monitoring: 'C:\src\main-232\src\ZNode\Znode_MultiFront\Web\Controls\Cat5\Navigation'. Common reasons for failure include: - The filename is not a valid Win32 file name. - The filename is not an absolute path. - The filename contains wildcard characters. - The file specified is a directory. - Access denied. Source=System.Web ErrorCode=-2147024809 WebEventCode=0 StackTrace: at System.Web.DirectoryMonitor.AddFileMonitor(String file) InnerException:

The thing is, the file this is pointing to IS a directory, so why does Visual Studio 2010 think it's a file? I'm running this on IIS 7 on my local machine

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

The good news: it doesn't seem to have any knock-on effects

The bad news: I haven't figured out the cause or a solution

The workaround: Disable break-on-exception for HttpException (Debug->Exception), and filter these out in your logs. You can still capture other HttpException in debug mode by placing a breakpoint in Application_Error (if you have implmented it - but you should have anyway)

link|improve this answer
feedback

Based on the Access Denied part of the message, I would imagine that IIS doesn't have NTFS permissions to the folder in question.

link|improve this answer
OP has pointed out that the path in question is in fact a directory – Vroomfundel Dec 14 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.