1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | // First of many projects. // // A simple application intended to be used as a personal dictionary. // Works using maps, and simple text files. Maps are modified first // and then the changes are written onto the file. // // Started work on :- 28th September, 2011 // Finished on :- 30th September, 2011 // // Usage:- Personally this application should be quite useful since // I am looking to improve my vocabulary and I will use this to // store the words that I have learnt. // // This application can also be modified to be used as a config. // file editor // #include <iostream> #include <fstream> #include <map> #include <vector> #include <string> #include <utility> #include <algorithm> #include <iterator> #include <limits> using std::cout; using std::cin; using std::map; using std::vector; using std::string; using std::ofstream; using std::ifstream; using std::cerr; using std::endl; using std::pair; using std::fstream; class FileIO{ public: void writeToMap(); void writeToFile(); void readFile(); void printMap(); void appMenu(); void searchFile(); void deleteFromMap(); static void initFile(string&); private: pair<string,string> splitString(const string&,char); static map<string,string> file; static string nameOfTheFile; string name; string value; }; map<string,string> FileIO::file; string FileIO::nameOfTheFile; // Initializes static variable nameOfTheFile to the name of file being processed // name: initFile // @param: name of the file being currently processed. // @return: none void FileIO::initFile(string& filename) { FileIO::nameOfTheFile=filename; } // Displays the menu from where various functions can be carried out // name: appMenu // @param: none // @return: none void FileIO::appMenu() { char choice; FileIO object; bool flag = true; while(flag) { cout<<endl; cout<<"Your wish is my command:"<<endl<<endl; cout<<"1. View Current File:"<<endl; cout<<"2. Write To Current File:"<<endl; cout<<"3. Search Current File:"<<endl; cout<<"4. Delete Entry from File:"<<endl; cout<<"5. Exit."<<endl; cin>>choice; switch(choice) { case '1': printMap(); continue; case '2': writeToMap(); continue; case '3': searchFile(); continue; case '4': deleteFromMap(); continue; case '5': writeToFile(); flag=false; break; default: cout<<"Invalid Input Detected. Please try again, your Majesty."<<endl; continue; } } } // Reads the contents of the file into the map. // name: readFile() // @param: none // @return: none void FileIO::readFile() { ifstream ifile(FileIO::nameOfTheFile.c_str()); string line="o"; pair<string,string> split; map<string,string>::iterator iter=file.begin(); while(getline(ifile,line)) { split= splitString(line,':'); file.insert(split); } } // Carries out changes to the map. // name: writeToMap() // @param: none // @return: none void FileIO::writeToMap() { cin.ignore(); char ans; do{ cout<<"Enter the name of the entry; "; getline(cin,name); cout<<"Enter the value for the name; "; getline(cin,value); if(!file.insert(make_pair(name,value)).second) { cout<<"Error! Entry already present in file. Please try again, sire."<<endl; continue; } cout<<"The entry has been added, your majesty."<<endl; cout<<"Would thy majesty like to add another entry? (Y/N) "; cin>>ans; cin.ignore(); cout<<endl; }while(ans=='y'||ans=='Y'); } // Writes the contents in the map to the file being processed // name: writeToFile() // @param: none // @return: none void FileIO::writeToFile() { ofstream ofile(FileIO::nameOfTheFile.c_str()); for(map<string,string>::iterator iter=file.begin();iter!=file.end();++iter) { ofile<<iter->first<<":"<<iter->second<<endl; } ofile.close(); } // Splits a string on ":". Used by the readFile() to read the file into map. // name: splitString // @param: string to be split, and character at which to split the string // @return: pair containing the two strings obtained by splitting pair<string,string> FileIO::splitString(const string& input, char ch) { string::const_iterator symbol=find(input.begin(),input.end(),ch); name=string(input.begin(),symbol); string::const_reverse_iterator rsymbol=find(input.rbegin(),input.rend(),ch); value=string(rsymbol.base(),input.end()); return make_pair(name,value); } // Prints the map to the console. // name: printMap() // @param: none // @return: none void FileIO::printMap() { map<string,string>::iterator iter=file.begin(); while(iter!=file.end()) { cout<<iter->first<<" : "<<iter->second<<endl; ++iter; } cout<<"Press ENTER to continue ..."; cin.get(); cin.ignore(std::numeric_limits<std::streamsize>::max(),'\n'); } // Checks whether the file specified by the filename exists. // name: fileExists // @param: File name entered by the user. // @return: bool value indicating whether file could be opened or not. bool fileExists(string& file) { bool b=false; ifstream check(file.c_str()); if(check) b=true; check.close(); return b; } // Used to search the contents of the map. // name: searchFile() // @param: none // @return: none void FileIO::searchFile() { cin.ignore(); char ans='y',ans1; do{ string search; cout<<"Enter the NAME of the entry to be searched OR exit/quit to go back to the Menu:"; getline(cin,search); if(search=="quit" || search=="exit") appMenu(); map<string,string>::iterator iter=file.find(search); if(iter==FileIO::file.end()) { cout<<"The entry does not exist in the file."<<endl; cout<<"Would you like to add the entry?(Y/N)"<<endl; cin>>ans1; cin.ignore(); if(ans1=='y'|| ans1=='Y') writeToMap(); continue; } cout<<iter->first<<":"<<iter->second<<endl; cout<<"Would you like to do another search?(Y/N)"; cin>>ans; cin.ignore(); }while(ans=='y'||ans=='Y'); } // Delete an entry from the map. // name: deleteFromMap() // @param: none // @return: none void FileIO::deleteFromMap() { cin.ignore(); string del; char ans; do{ cout<<"Please enter the name of the entry you wish to delete: "; getline(cin,del); if(file.erase(del)) cout<<"Word Removed."<<endl; else cout<<"Word "<<del<<" not found."<<endl; cout<<"Delete another word?(Y/N)"; cin>>ans; cin.ignore(); }while(ans=='y'||ans=='Y'); } int main() { string filename; bool quit=true; FileIO obj; do{ cout<<"Enter the path to the file OR type exit or quit to exit the application: "; cin>>filename; if(filename=="quit"||filename=="exit") break; char ans; if(!fileExists(filename)) { cout<<"File does not exist..."<<endl; cout<<"Do you want to create the file?(Y/N)"; cin>>ans; if((ans=='y')||(ans=='Y')) { ofstream createfile(filename.c_str()); obj.initFile(filename); obj.readFile(); obj.appMenu(); continue; } else continue; } obj.initFile(filename); obj.readFile(); obj.appMenu(); }while(quit); return 0; } |
-
upload with new input
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Success time: 0s memory: 2880 kB returned value: 0
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
-
result: Runtime error time: 0s memory: 2880 kB signal: 25 (SIGXFSZ)
Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the application: File does not exist... Do you want to create the file?(Y/N)Enter the path to the file OR type exit or quit to exit the appl


