Sure. It's actually pretty straight-forward. If you are using tuple output with a certain schema:
builder.setDefaultNamedOutput(outputSchema);
(there's other methods with the same name as well in case you don't emit ITuple for configuring Hadoop Key, Value classes).
And then you just use named outputs as usual:
collector.getNamedOutput(folderName).write(...)
Current development version is 0.60.7-SNAPSHOT, which is actually about to be official release.
Let me know how it works,