string localFilePath, fileNameExt, newFileName, FilePath;
            int id;
            SaveFileDialog saveFileDialog = new SaveFileDialog();
            TongXin tongxin = new TongXin();
            
            //设置文件类型 
            saveFileDialog.Filter = "wav files(*.wav)|*.wav";            //设置默认文件类型显示顺序 
            saveFileDialog.FilterIndex = 2;            //保存对话框是否记忆上次打开的目录 
            saveFileDialog.RestoreDirectory = true;            //点了保存按钮进入 
            if (dgvJinRiTongHua.RowCount!=0)
            {
                id = Convert.ToInt32(dgvJinRiTongHua.CurrentRow.Cells[5].Value);
                if (id==0)
                {
                    MessageBox.Show("没有可选择的录音!");
                }
                else if (saveFileDialog.ShowDialog() == DialogResult.OK)
                {
                    //获得文件路径
                    localFilePath = tongxin.GetJinRiLaiDianById(id);                    //获取文件名,不带路径 
                    fileNameExt = localFilePath.Substring(localFilePath.LastIndexOf("\\") + 1);                    //获取文件路径,不带文件名 
                    FilePath = localFilePath.Substring(0, localFilePath.LastIndexOf("\\"));                    //给文件名前加上时间
                    //newFileName = DateTime.Now.ToString("yyyyMMdd") + fileNameExt;                    //在文件名里加字符 
                    //saveFileDialog1.FileName.Insert(1,"dameng");                    System.IO.FileStream fs = (System.IO.FileStream)saveFileDialog.OpenFile();//输出文件
                    //fs输出带文字或图片的文件,就看需求了 
                }            }这是代码,但是输出的文件是0字节
我要把localFilePath 的文件复制一份到别的路径
因该怎么写? 
高手给段代码 谢谢了!