如果用代碼創建的話

import os

if not os.path.exists('./video'):
    os.mkdir('./video')
    print('創建video文件夾成功')
else:
    print('video文件夾已存在')