0

我创建了一个文件观察服务来监视和记录计算机上的所有更改,并将它们写入 C:/ 上的文件,但我希望能够在关闭(关闭计算机)时将该文件发送到我有网站数据库。我使用过 TcpListeners、vars、以及其他选项。有没有办法让这项服务工作?它在 C# 上运行,服务器在 Django 上运行。它的工作方式是;

Changed > Log.txt > OnStop send to website

有什么办法可以让它像这样工作,还是我做错了什么?下面是我正在使用的 var 方法。

var request = (HttpWebRequest)WebRequest.Create("www.example.com");

var postData = "user=hello";
postData += "&event=world";
postData += "&path=world";
postData += "&stamp=world";
var data = Encoding.ASCII.GetBytes(postData);

request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;

using (var stream = request.GetRequestStream())
{
   stream.Write(data, 0, data.Length);
}

var response = (HttpWebResponse)request.GetResponse();

var responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
4

1 回答 1

0

What do you think about a trigger on the shutdown system? I mean a separate task
Here there is a question

于 2016-07-18T16:03:39.910 回答