私は C++ プログラミングに慣れていません (大学以来 10 年以上は行っていません)。引数として渡されたファイル名を取得するための非常に基本的なプログラムを作成しようとしています。ファイル名を取得する方法がわかりません。デスクトップにVS2012 Expを使用しています。
以下は私のコードです。
#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;
}