搅拌机无法读取 .txt 文件
blender can't read the .txt file
我试图从存储在文本文件中的坐标绘制一个立方体,当我在 vs 代码中执行它时它工作得很好,但我的搅拌机文本编辑器一直给我 'No such file or directory' 错误
with open("list.txt", "r") as filestream:
for line in filestream:
currentline = line.split(",")
total = str( int(currentline[0]) + int(currentline[1]) + int(currentline[2])) + "\n"
print(currentline)[enter image description here][1]
只需提供 txt 文件的绝对路径,因为 blender python shell 可能在包含 txt 文件的目录中没有其工作目录。
编辑
您可以尝试导入 os
模块并在打开 txt 文件之前调用 os.chdir("/directory/containing/the/txt/file/")
。
我试图从存储在文本文件中的坐标绘制一个立方体,当我在 vs 代码中执行它时它工作得很好,但我的搅拌机文本编辑器一直给我 'No such file or directory' 错误
with open("list.txt", "r") as filestream:
for line in filestream:
currentline = line.split(",")
total = str( int(currentline[0]) + int(currentline[1]) + int(currentline[2])) + "\n"
print(currentline)[enter image description here][1]
只需提供 txt 文件的绝对路径,因为 blender python shell 可能在包含 txt 文件的目录中没有其工作目录。
编辑
您可以尝试导入 os
模块并在打开 txt 文件之前调用 os.chdir("/directory/containing/the/txt/file/")
。