statcache
 

# Module 'statcache'
#
# Maintain a cache of file stats.
# There are functions to reset the cache or to selectively remove items.


 Modules
                                                                                                                                                                                                                               
os


 Functions
                                                                                                                                                                                                                               
forget(path)
# Remove a given item from the cache, if it exists. #
forget_dir(prefix)
# Forget about a directory and all entries in it, but not about
# entries in subdirectories. #
forget_except_prefix(prefix)
# Remove all pathnames except with a given prefix.
# Normally used with prefix = '/' after a chdir(). #
forget_prefix(prefix)
# Remove all pathnames with a given prefix. #
isdir(path)
# Check for directory. #
reset()
# Reset the cache completely. #
stat(path)
# Stat a file, possibly out of the cache. #