Does anyone know what the complexity of the os.path.exists function is in python with a ext4 filesystem?
|
feedback
|
|
Underlying directory structure used by Ext4 (and Ext3) is exactly the same as in Ext2. Ext3 adds journaling, Ext4 improves that journaling. Journaling is irrelevant to your question. Originally Ext2 used to store that as list, but that of course was inefficient for large directories. So it's has been changed to tweaked version of B-tree called HTree. Unlike standard B-tree, HTree has constant depth and uses hash-map per node, thus it's lookup complexity is O(1).
See: http://ext2.sourceforge.net/2005-ols/paper-html/node3.html | |||
|
feedback
|
|
Chances are good that the complexity is | |||
|
feedback
|