我们尝试使用此代码创建一个 txt 文件
using (StreamWriter _testData = new StreamWriter(Server.MapPath("~/data.txt"), true))
{
_testData.WriteLine(" asd"); // Write the file.
}
但是我们收到消息Access to the path 'L:...\data.txt' is denied
这可以在文件夹安全的用户组之外禁用匿名和网络服务来完成吗?
Upd:我们有一个 Web 应用程序,我们想跟踪某个按钮的点击次数以获取每个用户一个月的使用统计信息,我们不能使用任何数据库(甚至不能访问)。
是创建 txt 文件的最佳方法吗?