摘要:
// ReverseFileDemo.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ if(!(argc >= 1)) { cout<<"参数过少"<<endl; system("pause"); return -1; } TCHAR szSrcFilePath[MAX_PATH] = {0}; _tcs 阅读全文