该操作允许用户编辑一个文件的路径。
bpy.ops.file.edit_directory_path(filepath="", directory="", **kwargs)
filepath
:一个字符串,表示要编辑路径的文件名。directory
:一个字符串,表示新的路径。参数filepath
和directory
至少要有一个被赋值。
该操作没有返回值。
import bpy
# 获取默认场景
scene = bpy.context.scene
# 获取第一张要素图层
layer = scene.view_layers[0]
# 编辑文件路径
bpy.ops.file.edit_directory_path(filepath=layer.layer_collection.name, directory="/new/path/to/folder")
该操作在 Blender 2.78 及更高版本中可用。