본문 바로가기
개발일기/파이썬

json 파일 읽고 쓰기

by 프로그래머콩 2019. 3. 31.

 

# #파일쓰기

 

# #파일쓰기
def init_Bld_id(path, name, msg, idx):

    today = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')

    result = { "chat_detail" : [] }

    r = json.dumps(result)

    config_path = os.path.join(application_path, path)
    f = open(config_path + name , 'w')
    f.write(r)
    f.close()

 

 

        # config_path + file_name경로의 파일 있는지 확인해서 오픈하고 읽기
        if ( os.path.isfile(config_path+file_name) ) :
            with open(config_path+file_name) as json_data:
                d = json.load(json_data)
                for item in d['chat_detail']:
                    print(item)
                    result_arr.append(item)