# | Line 27 | Line 27 | void getLSrangeofEachRuns(vector<string> | |
---|---|---|
27 | ||
28 | cout<<"certfile: "<< certfiles[n].c_str() <<endl; | |
29 | ifstream txtin(certfiles[n].c_str(),ios::in); | |
30 | < | |
30 | > | if (txtin.fail()) { |
31 | > | cout<<" file can not be opened!" <<endl; |
32 | > | exit(1); |
33 | > | } |
34 | ||
35 | + | |
36 | while( txtin.good()){ | |
37 | ||
38 | char buf[MAX_CHARS_PER_LINE]; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |