ubuntu - Python error OSError: [Errno 31] Too many links -
see error message below, while trying create new directory python's native os library.
... file "files.py", line 93, in create_dir os.makedirs(d) file "/usr/lib/python2.7/os.py", line 150, in makedirs makedirs(head, mode) file "/usr/lib/python2.7/os.py", line 157, in makedirs mkdir(name, mode) oserror: [errno 31] many links: '/var/lib/kaas/77520'
i can see there above 32000 directories in directory
$ ll | wc -l 32001
is there limit on os level how many directories can created or causing issue here? or python limitation?
i'm running ubuntu 12.04.4 lts.
the 32000 directory entry limit filesystem-level ext3 limit.
Comments
Post a Comment