Storing and reading file paths from _TCHAR *argv[]
- by ArsenArsen
How to convert from _TCHAR* to "" and to keep all : and /? I tried:
int _tmain(int argc, _TCHAR* argv[])
{
if(!argv[1]){
std::cout<<"No Variables.\r\n";
system("PAUSE");
return 0;
std::exit;
}
std::cout<<"Path: "<<argv[1]<<"\r\n";
system("PAUSE");
return 0;
}
But, output is either "No variables." or "Path: C" (when I changed _TCHAR to const char and char) or either "Path: 00038706"