递归删除Mac os 系统下专属文件
import os
def read_dirname(path):
files = os.listdir(path)
for file in files:
if os.path.isdir(f'{path}/{file}'):
read_dirname(f'{path}/{file}')
elif file[0] == '.' and os.path.exists(f'{path}/{file[2:]}'):