def print_before(path):
print("Cleaning {} located at {}\n".format(path.split('/')[-1], path))
print(Fore.LIGHTBLUE_EX + "Folders before cleaning\n" + Fore.RESET)
for files in os.listdir(path):
print(files, end='\t')
print()
评论列表
文章目录