This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\.epub\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] | |
@="{9E6ECB90-5A61-42BD-B851-D3297D9C7F39}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import bpy | |
#ex. path_to_obj_dir = os.path.join("C:\\Users\\Your Name\\Dropbox\\3d") #Windows | |
obj_path = bpy.path.abspath('絶対PATH') #Mac | |
# ディレクトリ内のすべてのファイルのリストを取得します | |
file_list = sorted(os.listdir(obj_path)) | |
#「obj」で終わるファイルのリストを取得します |