FileUploadField
It made sense (at the time) to be able to disable the upload fields from the export. You're not always interested in a long url, so you could (and still can) disable this via a setting on the General Settings page.
Of course nowadays you can just disable specific fields on the form settings, but it's still a nice feature to have.
Filters
gfexcel_field_fileuploads_enabled_{form_id}
Makes it possible to disable/enable a field. Just return a boolean, or use the wordpress __return_false
or
__return_true
functions.
Example
// all upload field are excluded from the export.
add_filter('gfexcel_field_fileuploads_enabled', '__return_false');