Open Flimm opened 2 months ago
Hey Flimm,
thank you for reaching out! Right now, DMF does not support filename sanitization as you describe it.
I will add it to my backlog. However, I am not sure if I will be able to integrate that feature in the near future. You are more than welcome to open a PR and I will take a look at the changes.
Cheers
I'm looking for filename sanitation. For example, Windows cannot correctly handle filenames containing
<
,>
,:
,"
,/
,\
,|
,?
or*
, ASCII control characters or the null byte. In addition, Windows reserves some filenames, includingCON
,PRN
,AUX
,NUL
and others. Filenames in Windows cannot end in a space or a dot. macOS and Linux have their own restrictions too.Right now, the setting
"keep_original_filename"
can only be set to True or False. I propose these values instead:"filenames": "keep"
that behaves like"keep_original_filename": True
"filenames": "random"
that behaves like"keep_original_filename": False
"filenames": "sanitize"
that will sanitize the filenames using a library likepathvalidate
Does django-middleware-fileuploadvalidation provide this functionality already? Maybe I missed it.