关于python:如何设置当前工作目录?

How to set the current working directory?

本问题已经有最佳答案,请猛点这里访问。

如何在python中设置当前工作目录?


试试os.chdir

1
os.chdir(path)

        Change the current working directory to path. Availability: Unix, Windows.


也许这就是你想要的:

1
2
import os
os.chdir(default_path)


1
2
import os
print os.getcwd()  # Prints the current working directory

要设置工作目录:

1
os.chdir('c:\\Users\\uname\\desktop\\python')  # Provide the new path here


它也适用于Mac

1
2
3
import os
path="/Users/HOME/Desktop/Addl Work/TimeSeries-Done"
os.chdir(path)

检查工作目录

1
os.getcwd()


使用…

1
2
import os
os.chdir(path)

其中(path)的格式是…

1
os.getcwd()

使用熊猫套餐的人

1
2
3
4
5
import os
import pandas as pd

tar = os.chdir('<dir path only>') # do not mention file name here
print os.getcwd()# to print the path name in CLI

以下语法用于在python cli中导入文件

1
dataset(*just a variable) = pd.read_csv('new.csv')


您需要导入os模块,然后可以使用chdir()方法,但不要忘记使用括号内的引号(''

1
2
3
import os

os.chdir('default_path')