I'm working on a program that will sort files based on extension
I currently use a internal dictionary to store the extension/location
.jpg / c:\blab blab\my documents\my pictures
.mp3 / c:\blab blab\my documents\my music
.gno / c:\familytree
etc
I would like to make this program less specific to me and allow users to configure what folders get monitored and what type of file extensions go where
the problem I get into is I'm not sure how to write / display the portion of the user config that would store the extension associations
Ideally I would like to display them in a datagridview or something of the sort but I'm completely lost on how i would do that
Thanks if you can help(or even if you cant)