pythonの標準ライブラリを使い、対象ファイルに隠しファイル設定を行います。 環境 python : 3.12.3 windows:19045.5131 コード 全体 import ctypes import os import win32con file_path = r"ファイルパス\test.xlsx" # Windows OSの場合 if os.name == "nt": # 隠し属性を設定 ctypes.windll.kernel32.SetFileAttributesW(file_path, win32con.FILE_ATTRIBUTE_HIDDEN) 説明 標準ライブラリのo…