projects
/
invirt/packages/python-afs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a simple afs._fs module that exposes a whichcell function, and an
[invirt/packages/python-afs.git]
/
afs
/
_fs.pyx
1
from afs cimport *
2
from afs import pyafs_error
3
4
def whichcell(char* path):
5
"""Determine which AFS cell a particular path is in."""
6
cdef char cell[MAXCELLCHARS]
7
8
pioctl_read(path, VIOC_FILE_CELL_NAME, cell, sizeof(cell), 1)
9
return cell