如何在Python中设置当前工作目录?
答案 0 :(得分:690)
尝试os.chdir
os.chdir(path)
将当前工作目录更改为路径。可用性:Unix,Windows。
答案 1 :(得分:124)
也许这就是你要找的东西:
import os
os.chdir(default_path)
答案 2 :(得分:24)
import os
print os.getcwd() # Prints the current working directory
设置工作目录:
os.chdir('c:\\Users\\uname\\desktop\\python') # Provide the new path here
答案 3 :(得分:8)
适用于 Mac
import os
path="/Users/HOME/Desktop/Addl Work/TimeSeries-Done"
os.chdir(path)
检查工作目录
os.getcwd()
答案 4 :(得分:3)
使用...
import os
os.chdir(path)
其中(路径)的格式为...
的输出os.getcwd()
答案 5 :(得分:-4)
使用pandas包的人
dataset(*just a variable) = pd.read_csv('new.csv')
以下用于在python CLI中导入文件的语法
public class DataHelper extends SQLiteOpenHelper {
public static final String DATABASE_NAME = "biodatadiri.db";
public final int DATABASE_VERSION = 1;
//The Error
public DataHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
//The Error
答案 6 :(得分:-11)
您需要导入os
模块,然后您可以使用chdir()
方法,但不要忘记在括号内使用引号(''
):
import os
os.chdir('default_path')