FileLogTraceListener.FullLogFileName Property

Definition

Gets the current full log-file name.

C#
public string FullLogFileName { get; }

Property Value

String, which is the current full log-file name.

Remarks

The FullLogFileName property gives the current full log-file name. It is generated according to the log path, the base name, the date, and a number to distinguish it from different versions of the log. New log files are created on an as-needed basis.

The explicit form of the full log-file name is path\baseName[-dateStamp][-iteration].log, where:

  • The path part is determined by the Location property and, if that property value is set to Custom, the CustomLocation property.

  • The baseName part is the fundamental log name, specified by the BaseFileName property.

  • The dateStamp part has the format YYYY-MM-DD, and it is shown when LogFileCreationSchedule is Daily or Weekly.

  • If more than one log file is needed with the same baseName and dateStamp, the iteration part, a positive Integer, is added to the file name.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 5, 6, 7, 8, 9, 10

See also