Is there a method to get all of the .aspx files in my website? Maybe iterate through the site's file structure and add to an array?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted
Directory.GetFiles(HttpContext.Current.Server.MapPath(@"/"), "*.aspx", SearchOption.AllDirectories);
link|improve this answer
feedback

using Directory.GetFiles("*.aspx"), you can get all the files in the directory. And you can make it recursive to grab any sub directories and their files.

link|improve this answer
feedback

Keep in mind that you can define an .aspx page without having an actual file be there in the web.config.

link|improve this answer
thanks, I will keep that in mind. – Anders Oct 15 '08 at 14:03
feedback

Your Answer

 
or
required, but never shown

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