int main()
{
ifstream fileList("paths.txt");
vector<string> paths;
string path;
int i = 0;
if(fileList.is_open())
{
while (!fileList.eof())
{
getline(fileList, path);
cout << path<<endl;
paths.push_back(path);
i++;
}
fileList.close();
}
system("pause");
return 0;
}