linhhuonglinux-office / scripts /list_hf_files.py
tamhonvotri's picture
Upload folder using huggingface_hub
ccd9809 unverified
from huggingface_hub import list_repo_files
repo_id = "nguyendinhduybigtreetc/linhhuonglinux-office-van-ban-hanh-chinh"
try:
files = list_repo_files(repo_id)
print("FILES IN REPO:")
for f in files:
print(f)
except Exception as e:
print(f"Error: {e}")