Skip to content

Instantly share code, notes, and snippets.

@ayuLiao
Last active November 6, 2018 08:27
Show Gist options
  • Select an option

  • Save ayuLiao/618711efea3f044fdf9b65774cc0b122 to your computer and use it in GitHub Desktop.

Select an option

Save ayuLiao/618711efea3f044fdf9b65774cc0b122 to your computer and use it in GitHub Desktop.
python文件常用操作
'''
判断路径是否存在,不存在则创建整个目录树
'''
if not os.path.exists(f_path):
#创建目录树
os.makedirs(f_path)
os.path.exists('d:/assist')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment