腿来功能,查看文件路径
This commit is contained in:
@@ -24,7 +24,6 @@ class BeautyLeg:
|
|||||||
self.command = config["command"]
|
self.command = config["command"]
|
||||||
self.LOG.info(f"[美腿] 组件初始化完成,指令: {self.command}")
|
self.LOG.info(f"[美腿] 组件初始化完成,指令: {self.command}")
|
||||||
|
|
||||||
|
|
||||||
def get_random_file_from_dir(self, directory):
|
def get_random_file_from_dir(self, directory):
|
||||||
image_extensions = {'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.tiff', '.webp'}
|
image_extensions = {'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.tiff', '.webp'}
|
||||||
image_files = []
|
image_files = []
|
||||||
@@ -70,8 +69,9 @@ class BeautyLeg:
|
|||||||
# 使用示例
|
# 使用示例
|
||||||
directory = 'beautyleg/download_dir' # 替换为你的目录路径
|
directory = 'beautyleg/download_dir' # 替换为你的目录路径
|
||||||
random_file_path = self.get_random_file_from_dir(directory)
|
random_file_path = self.get_random_file_from_dir(directory)
|
||||||
|
random_file_path = os.path.abspath(random_file_path)
|
||||||
self.LOG.info(f"BeautyLeg.random_file_path: {random_file_path}")
|
self.LOG.info(f"BeautyLeg.random_file_path: {random_file_path}")
|
||||||
if random_file_path:
|
if random_file_path:
|
||||||
return self.wcf.send_file(os.path.abspath(random_file_path), message.roomid)
|
return self.wcf.send_file(random_file_path, message.roomid)
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|||||||
Reference in New Issue
Block a user