Last active
November 6, 2018 08:27
-
-
Save ayuLiao/618711efea3f044fdf9b65774cc0b122 to your computer and use it in GitHub Desktop.
python文件常用操作
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| 判断路径是否存在,不存在则创建整个目录树 | |
| ''' | |
| 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