Skip to Content
Menú
This question has been flagged
1 Respondre
4720 Vistes

Hello,

I have a binary field and I would like get the size of this file for prevent the upload.

How can I do ?


Thanks

Avatar
Descartar
Best Answer

How about a function in a custom module? Here's the most relevant part you need 

import os

check_size = os.path.getsize("/path/filename")
print check_size # not needed, is just for a quick dev check.

The rest of the logic depends on what you need to do exactly. 

Avatar
Descartar
Related Posts Respostes Vistes Activitat
3
de jul. 25
8880
1
de maig 25
1135
0
de gen. 24
1821
1
de febr. 22
24002
0
de gen. 22
2853