Add your files
Drop one TSV or two hundred. Batch conversion is not a paid feature here.
A tab-delimited export from a database or a bioinformatics tool has to go into something that only accepts CSV.
The delimiter changes from tab to comma, and every field that now contains a comma is quoted so the structure survives.
This is exactly where naive conversions corrupt data. A field containing a comma, which was perfectly safe in TSV, must be quoted in CSV or the row silently gains a column. Free-text and address fields are where it happens.
Tabs almost never appear inside data fields, so TSV needs far less quoting and escaping than CSV. Scientific tooling prefers it for that reason.
They are quoted, and the CSV reader on the other end must support multi-line fields. Many simple parsers do not.
Drop one TSV or two hundred. Batch conversion is not a paid feature here.
Comma-Separated Values is lossless, so nothing is thrown away in the conversion.
Converted and deleted the moment it finishes. Never written to permanent storage.