def create(self, path):
# create a subkey, and the path to it if necessary
k=self
for p in path.split('/'):
if p in k.keys:
k=k.keys[p]
else:
reg.CreateKey(k.wrk, p)
k=Key(k, p)
return k