CSVFiles: read file with non-standard extension

Can you try

using CSVFiles, DataFrames, FileIO

path  = "/file/tree/my_nonstandard_file.1b"
df = load(File(format"TSV", path)) |> DataFrame
2 Likes