import os.path def get_file_with_parents(filepath, levels=1): common = filepath for i in range(levels + 1): common = os.path.dirname(common) ...
確定! 回上一頁