genericworkflownodes / GenericKnimeNodes

Base package for GenericKnimeNodes
https://github.com/genericworkflownodes/GenericKnimeNodes
Other
15 stars 16 forks source link

This avoids appending extra extensions #120

Closed temehi closed 8 years ago

temehi commented 8 years ago

A prefix can represent files with various extensions and/or mimetypes. As a result one can not specify in advance supported file types for an input/output prefix ports. Which means supported files are any files with that prefix. Something like "prefix.* " .... This fix avoids extra extension taken from the valid types and enables us to use ".*" as a valid type. Before it looked like these and closes the issue I reported issue #115.

/path/to/prefix.ext.ext1 
/path/to/prefix.ext.ext2 
/path/to/prefix.ext.ext3 ... 

now

/path/to/prefix.ext1 
/path/to/prefix.ext2 
/path/to/prefix.ext3 ...