DB-GPT/dbgpt/util/path_utils.py
FangYin Cheng cd725db1fb
refactor: The first refactored version for sdk release (#907)
Co-authored-by: chengfangyin2 <chengfangyin3@jd.com>
2023-12-08 14:45:59 +08:00

7 lines
105 B
Python

import os
def has_path(filename):
directory = os.path.dirname(filename)
return bool(directory)