TvDatabase.TvBusinessLayer.FileNotExistsString C# (CSharp) 메소드

FileNotExistsString() 개인적인 정적인 메소드

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
리턴 String
    private static String FileNotExistsString(String fileName)
    {
      if (!File.Exists(fileName))
      {
        return "\r\n" + fileName;
      }
      return "";
    }
TvBusinessLayer