码迷,mamicode.com
首页 > 编程语言 > 详细

python 切换工作目录

时间:2020-02-21 12:48:01      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:pat   pytho   切换目录   path   ini   name   换工作   current   class   

切换到指定名字的目录,作为init文件,在别的文件中import该文件就可以完成切换目录

# 切换工作目录

import os

current_path = os.getcwd()
print(current_path)

project_name = project

current_path = current_path[:current_path.find(project_name) + len(project_name)]
os.chdir(current_path)

print(os.getcwd())

 

python 切换工作目录

标签:pat   pytho   切换目录   path   ini   name   换工作   current   class   

原文地址:https://www.cnblogs.com/zhangjian0092/p/12340793.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!