我是 C++ 编程的新手(自大学以来 10 岁以上没有做过),我正在尝试编写一个非常基本的程序来获取已作为参数传递的文件名。我只是不知道如何获取文件名。我正在使用 VS2012 Exp for Desktop。
下面是我的代码。
#include "stdafx.h"
#include <fstream>
#include <iostream>
#include <xstring>
#include <string>
//using namespace openutils;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
wcout << "customconsole app has "<< argc <<" arguments passed. second one is: " << argv[1];
ofstream me_attach_file;
wstring newfilename = argv[1] && ".newext";
me_attach_file.open (".mailexpress");
me_attach_file << "Writing this to a file.\n";
me_attach_file.close();
return 0;
}