Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
4752 Переглядів

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

Аватар
Відмінити
Найкраща відповідь

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. 

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
3
лип. 25
8907
1
трав. 25
1163
0
січ. 24
1840
1
лют. 22
24031
0
січ. 22
2892