我有这个代码:
string log_file_name = @"\logger.txt";
string logger_file_to_read = Path.GetDirectoryName(Application.LocalUserAppDataPath) + @"\log";
string LoggerFile = Path.Combine(logger_file_to_read, log_file_name);
我使用了一个断点,我看到:logger_file_to_read 包含:
C:\Users\bout0_000\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagnostic Tool Blue Screen\log
并且该 log_file_name 包含:
\logger.txt
但后来我看到 LoggerFile 只包含文件名: \logger.txt 没有目录。
那是什么?