C#读出数据流并显示,文件找不到,

一个数据流格式基本为1A 2B 3C文件较大,想在程序中读1A2B3C并显示,但是显示文件找不到,已经放入debug目录下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace DECODE
{
class Program
{
static void Main(string[] args)
{
string path = @" frame_0_right.dat ";
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
Byte data = br.ReadByte();
String datastr = Convert.ToString("X2");
Console.Write(data);
Console.Read();
}
}
}图片说明

已找到,文件名里有空格。。

但是改了以后图片说明求问

又改了下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace DECODE
{
class Program
{
static void Main(string[] args)
{
string path = @"frame_0_right.dat";
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
Byte data = br.ReadByte();
string str = System.Text.Encoding.Default.GetString(byte[data]);
Console.Write(data.ToString("X2"));
Console.Read();
}
}
}
图片说明