linux find files without string

Shell
# syntax: 
# find *</path/to/dir> ! -name '*<substring-to-exclude>’

# example: 
find . ! -name '*.csv'
Source

Also in Shell: