【VC6.0】如何拖动txt文件到exe文件上面,并把txt文件的文件名传给exe中的字符数组?

日期:2011-11-23 08:21:15 人气:1

【VC6.0】如何拖动txt文件到exe文件上面,并把txt文件的文件名传给exe中的字符数组?

[1]利用main函数的参数。例子如下: #include int main( int argc, char* argv[] ) { if( argc < 2 ) { return; } FILE* pFile = fopen( argv[1], "r" ); char c; while( !feof( pFile ) ) { c = fgetc(
    A+
热门评论