#!/usr/bin/env python3 import os content = ''' ''' file_path = 'c:/Users/caoyg/ai/audio-tts/audio_codebuddy/my-uniapp-vue3/src/pages/video-generator/create.vue' os.makedirs(os.path.dirname(file_path), exist_ok=True) with open(file_path, 'w', encoding='utf-8') as f: f.write(content) print(f'文件已创建: {file_path}') print(f'文件大小: {os.path.getsize(file_path)} bytes')