在网站中获取 *.aspx 的代码
有没有办法获取我网站中的所有 .aspx 文件? 也许迭代站点的文件结构并添加到数组中?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用Directory.GetFiles("*.aspx"),可以获取目录中的所有文件。 您可以使其递归以获取任何子目录及其文件。
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.
请记住,您可以定义 .aspx 页面,而无需 web.config 中存在实际文件。
Keep in mind that you can define an .aspx page without having an actual file be there in the web.config.