update
This commit is contained in:
6
2022.03.16_frequently_used_python_package/os_example.py
Normal file
6
2022.03.16_frequently_used_python_package/os_example.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import os
|
||||
os.getcwd() # 获取路径
|
||||
if os.path.exists('new_dir') == False: # 判断路径是否存在
|
||||
os.makedirs('new_dir') # 新建文件夹
|
||||
os.chdir('new_dir') # 切换到该文件夹
|
||||
print(os.walk('/')) # 游走目录
|
||||
Reference in New Issue
Block a user