Hi
I Have a list that contains dbfile,paths and i need to add them to a map inorder to get corresponding values. my LIST contains items as like
star
e:\data\star.mdf
e:\data\star.ldf
kiran
e:\data\kiran.mdf
e:\data\kiran.ldf
hai
e:\data\hai.mdf
e:\data\hai.ldf
Now i need to insert them by populating a list as specified format
map<string,list<string>>
| |
\/ \/
databasename paths info
how can i do this.
Plz help me