bpy.context.selected_files
bpy.context.selected_files
是一个包含当前选中的文件路径列表的 Blender 上下文变量。
bpy.context.selected_files
是一个普通的 Python 列表,其中包含以字符串形式表示的文件路径。例如:
>>> import bpy
>>> bpy.context.selected_files
['/path/to/selected/file1', '/path/to/selected/file2', '/path/to/selected/file3']
bpy.context.selected_files
可以用于在 Blender 动作中操作当前选中的文件。例如,您可以使用它来:
bpy.context.selected_files
的值为 []
。bpy.context.selected_files
仅包含文件路径,而不包括文件名称,因此您可能需要在操作文件时使用其他方式来获取文件名。bpy.context.selected_files
只适用于当前打开的 Blender 文件,不能用于在 Blender 外部操作文件。bpy.context.selected_files
将仅包含与当前文件夹相对路径相关的文件,而不包括其他文件夹中的文件。