我编写了自己的日志文件,但我使用的工具要求对此进行编码
' Session.SessionLogPath' - 下面是我写日志文件的地方。
我现在确定如何包含' Session.SessionLogPath'在下面。
string LogPath = AppDomain.CurrentDomain.BaseDirectory;
string filename = "\\Log.txt";
string filepath = LogPath + filename;
if (!File.Exists(filepath))
{
StreamWriter writer = File.CreateText(filepath);
writer.Close();
}
using (StreamWriter writer = new StreamWriter(filepath, true))
{
writer.WriteLine(Message);
答案 0 :(得分:0)
如果您正在使用WinSCP.NET,则可以创建会话类的实例,并访问属性SessionLogPath。
<?php
function style() {
global $css;
echo $css;
}
$css = 5;
echo "<div>" . style() . "</div>";
?>
这是一个更全面的example