Initial commit

This commit is contained in:
dev
2025-02-27 21:53:53 +08:00
commit 815e55e4c0
1291 changed files with 185445 additions and 0 deletions

7
hf3fs_fuse/fuse.py Normal file
View File

@@ -0,0 +1,7 @@
import os
from pathlib import PosixPath
def get_mount_point(p):
np = os.path.realpath(p)
parts = PosixPath(np).parts
return os.path.join(*parts[:3])