TvDatabase.TvBusinessLayer.FileNotExistsString C# (CSharp) Method

FileNotExistsString() private static method

Checks if a file doesnt exist and then returns the filename preceded by a CRLF combination. If the file does exist a empty string is returned.
private static FileNotExistsString ( String fileName ) : String
fileName String
return String
    private static String FileNotExistsString(String fileName)
    {
      if (!File.Exists(fileName))
      {
        return "\r\n" + fileName;
      }
      return "";
    }
TvBusinessLayer