Answers for "blender python get current filename"

0

blender python get current filename

import bpy
import os

filepath = bpy.data.filepath
filepath_split = os.path.split(filepath) #list with [path, name]
Posted by: Guest on July-07-2021

Code answers related to "blender python get current filename"

Python Answers by Framework

Browse Popular Code Answers by Language