Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
6878 มุมมอง

Hi,

  • I want to create a folder inside the Odoo folder using python function( ie, inside Odoo-12.0 )

  • for this, I imported the os, and find the path. If the path didn't exist I want to create a folder as the path describes. but when this runs it shows an error like,

    PermissionError: [Errno 13] Permission denied '/certificates'
    My code is given below. Please Help

import os
path = str(pathlib.Path(__file__).parent.absolute()) + "/certificates"
is_file = os.path.exists(path)
if not is_file:
os.mkdir(path)
อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hello,

Please run the following command to show the access rights on the folder where you want to create the new folder.

ls -l path/to/folder

Check if you have the write permission on that folder. If not, please run the following command:

sudo chmod +w path/to/folder

Good luck.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
ส.ค. 24
2067
1
พ.ย. 15
4997
2
ก.พ. 24
1181
1
ต.ค. 23
7833
Struggling with ir.model.access.csv แก้ไขแล้ว
2
ก.ย. 21
10647