NLog.Targets.FileTarget.WriteFooter C# (CSharp) 메소드

WriteFooter() 개인적인 메소드

Writes the footer information to a file.
private WriteFooter ( string fileName ) : void
fileName string The file path to write to.
리턴 void
        private void WriteFooter(string fileName)
        {
            byte[] footerBytes = this.GetFooterBytes();
            if (footerBytes != null)
            {
                if (File.Exists(fileName))
                {
                    this.WriteToFile(fileName, null, footerBytes, true);
                }
            }
        }