Does this design have a good usability?

I asked this question on Stackoverflow and has been redirected here. Sorry about cross-posting.

I am writing a financial application and I need to write a specialized file open dialog for the user to be able to load stock data files in two different formats: Computrac and CSI.

My dialog has a list view where I need to show these data files.

The format of CSI files can interpreted in three different ways and I need to ask the user which way they prefer. For that I am planning to have a drop down box in each CSI row that the user can change.

The Computrac format can be interpreted in two ways, and for that I have a checkbox.

I am thinking to place these checkboxes/dropdowns in a separate column and show them only for selected item(s) and hide them for unselected items. Below is the screen shot.

My question to the usability experts: is this confusing? Is there a better way? Showing them for every item would make the table crowded, would it not? On the other hand, when there is no selection, the user won't see these controls at all and would not know that they are there.

EDIT:

This file _import_ dialog is a wizard. The first step asks the user to select a directory where to search for data files. The second step is shown in the screen shot. It gives a list of files found. They may not necessarily be in the same directory.

The user can import more than one file. The imported data are going to be stored in the program's database in a unified format that removes differences between CSI and Computrac. So to start working with data the user will first have to import them and then open a particular data series from the program's database.

So adding a third step to the wizard that asks whether they want to ignore DOP files or to select the price extension scheme makes little sense if they want to import multiple files.

I do not like having data import options in every row and since I do not expect users to import data often, maybe it is better to have an "options" button in this screen that would let the user to set import options that would apply to all files imported in this dialog invocation? Kind of like the third step suggested by Erion below...

Please give me your opinions.

alt text