BExIS.IO.FileHelper.FileExist C# (CSharp) Method

FileExist() public static method

public static FileExist ( string path ) : bool
path string
return bool
        public static bool FileExist(string path)
        {
            if (File.Exists(path))
                return true;
            else
                return false;
        }