https://github.com/dabiaoge/csv2dbf
csv2dbf & dbf2csv, programs that convert between CSV and DBF formats.
https://github.com/dabiaoge/csv2dbf
csv dbase dbf
Last synced: 2 months ago
JSON representation
csv2dbf & dbf2csv, programs that convert between CSV and DBF formats.
- Host: GitHub
- URL: https://github.com/dabiaoge/csv2dbf
- Owner: dabiaoge
- License: bsd-2-clause
- Created: 2026-01-02T08:42:31.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-01-12T12:12:17.000Z (3 months ago)
- Last Synced: 2026-01-13T22:50:28.417Z (2 months ago)
- Topics: csv, dbase, dbf
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv2dbf & dbf2csv, programs that convert between CSV and DBF formats.
- csv2dbf: support xBase III only.
- dbf2csv: support xBase III/IV/VII, xFoxPro.
-----------------------------------------------------------------------------
# csv2dbf
```text
CSV2DBF Converter
Author : dabioage
Usage: csv2dbf [options] [csv_file2] ...
Options:
-c int
Show progress every N rows (default 0, disable output)
-e string
Encoding (UTF-8, GBK, GB18030) (default "UTF-8")
-f string
Field delimiter (single char) (default ",")
-l string
Line ending (e.g. "\n", "\r\n") (default "\n")
-q string
Quote character (default "\"")
Examples:
csv2dbf data.csv
csv2dbf -e GBK -c 5000 data.csv
csv2dbf -f '|' data.csv
```
-----------------------------------------------------------------------------
# dbf2csv
```text
DBF2CSV Converter
Author : dabiaoge
Usage: dbf2csv [options] [dbf_file2] ...
Options:
-c int
Show progress every N rows (default 0, disable output)
-e string
Source DBF Encoding (UTF-8, GBK, GB18030) (default "UTF-8")
-f string
Output field delimiter (single char) (default ",")
-l string
Output line ending (e.g. "\n", "\r\n") (default "\n")
-q string
Quote character (default "\"")
Examples:
dbf2csv data.dbf
dbf2csv -e GBK -c 5000 data.dbf
dbf2csv -f '|' data.dbf
```