void CBandfileDlg::OnBandFile() { // TODO: Add your control notification handler code here CString filename; int filenum = 0; int headoffset; int fileoffset; int filelen; int filenamelen; FILE *fp; CFile file; char *buff; char fileflag[5] = "LICH";
题目:在提示符下使用open打开一个文件
刚开始网上看了下打开的方式,结果一直实现不了,报错是没找到这个文件,而且和我输入的文件名不一样。
错误如下:
>>>open('d:\456.txt')
Traceback (most recent call last):
File "", line 1, in
open('d:\456.txt')
IOError: [Errno 2] No such file or directory: 'd:..txt'
--------