سلام
در قطعه کد زیر فایلی فرا فراخوانی کرده تا خوانده شود اما متاسفانه فایل باز نمیشود .
به فولدر برنامه و فولدر پروژه دسترسی every one(Full) داده شده است .
با تشکر


#include <iostream>
#include <conio>
#include <stdio>
#include <fstream>
#include <string>

using namespace std;

void main()
{

string lastname;
string firstname;
fstream myfile("C:\Projects\C++‎‎‎‎‎‎‎\File1\Re ad\test1.txt",ios::out);

if(!myfile)
{
cerr<<"File Can Not Open . \n";
//exit(1);
}

getch();
}