X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/f95acfabee62680cab0d953596cc7539585caff8..41165a6d2c880400afc4b04700d05bd3fa537a42:/afs/fs.py?ds=inline diff --git a/afs/fs.py b/afs/fs.py index 0044c05..a90cd4c 100644 --- a/afs/fs.py +++ b/afs/fs.py @@ -1,2 +1,13 @@ +import errno import _fs from _fs import whichcell + +def inafs(path): + """Return True if a path is in AFS.""" + try: + whichcell(path) + except OSError, e: + if e.errno in (errno.EINVAL, errno.ENOENT): + return False + + return True