각 폴더에 저장된 JPG 파일 리스트 HTML로 만들기 > 자유게시판

본문 바로가기
  • 회원로그인

    아이디 비밀번호
  • 접속자 75
사이트 내 전체검색

자유게시판

각 폴더에 저장된 JPG 파일 리스트 HTML로 만들기

페이지 정보

본문

시간 날때 마다 보려고 웹툰을 미리 다운 받아서 저장 해 놓았으나 기존 만화 파일과는 다르게 일반 뷰어에서는 보기 힘들어서 폴더내의 JPG 파일 리스트를 추출해서 html로 저장하는 프로그램을 간단히 만들어 봤습니다.


파이썬입니다.



# -*- coding: utf-8 -*-

import os

import tkinter

from tkinter import filedialog

from PIL import Image


root = tkinter.Tk()

root.withdraw()


def createDirectory(directory):

    try:

        if not os.path.exists(directory):

            os.makedirs(directory)

    except OSError:

        print("Error: Failed to create the directory.")

        

def create_list(main_path,path) :

    file_list=os.listdir(path)

    html_path = main_path+"/html"

    createDirectory(html_path)

    html_file_name = html_path+"/"+path.split("\\")[-1]+".html"

    f = open(html_file_name, 'w')

    f.write("<center>")

    get_jpg_size = 1

    file_list_jpg=[file for file in file_list if file.endswith(".jpg")] 

    for file_name in file_list_jpg:

        if get_jpg_size == 1 :

            jpg_file_path = os.path.join(path,file_name).replace("\\","/")

            jpg_image = Image.open(jpg_file_path)

            jpg_w,jpg_h = jpg_image.size

            get_jpg_size = 0

        html_file_name = '<img src="..\\..\\'+path.split("/")[-1]+"\\"+file_name+'" width='+str(jpg_w)+'><br>'

        f.write(html_file_name)

    f.write("</center>")

    f.close()

    

main_path=filedialog.askdirectory(parent=root,initialdir="/",title='Please select a directory')

dirs = os.listdir(main_path)

f_list = open(main_path+"/list.html", 'w')

f_list.write('<!DOCTYPE html><html><head><title>'+main_path+'</title></head><body><center>')

first_file_name = 0


for file in dirs:

    root_path = os.path.join(main_path, file)

    if os.path.isdir(root_path):

        dir_name = root_path.split("\\")[-1]

        if first_file_name == 0:

            first_file_name = dir_name

        if dir_name != "html":

            create_list(main_path,root_path)

            f_list.write('<a href=".\\html\\'+dir_name+'.html" target=cartoon>'+dir_name+'</a><br>')

            last_file_name = dir_name

f_list.write('</center></body></html>')

f_list.close()


f_list = open(main_path+"/main.html", 'w')

f_list.write('<!DOCTYPE html><html><head><title>'+main_path+'</title></head><body><h3>'+main_path.split('/')[-1]+' 총'+last_file_name+'회</h3><center>')

f_list.write('<iframe src="list.html" width=15% height=1024 frameborder=0 name=list align=left></iframe>')

f_list.write('<iframe src="./html/'+first_file_name+'.html" width=80% height=2048 name=cartoon frameborder=0  align=right></iframe>')

f_list.write('</center></body></html>')

f_list.close()


댓글목록

profile_image
Total 213건 1 페이지
자유게시판 목록
번호 제목 글쓴이 조회 날짜
공지 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8383 11-23
212 no_profile 수염쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3278 07-06
211 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3 11-17
열람중 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8115 08-11
209 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5 04-18
208 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 22551 01-17
207 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10744 01-05
206 no_profile KangPD쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11502 05-15
205 no_profile 해무지개쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11681 04-30
204 no_profile 노모어쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10917 02-19
203 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 13036 10-11
202 no_profile 라따뚜이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11540 09-21
201 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15331 05-22
200 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 19 10-08
199 no_profile 사토나카쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 14966 06-24
198 no_profile 오르뫼쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16771 11-14
197 no_profile jeeehooo쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17104 06-05
196 no_profile 슈퍼맨쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 16277 05-31
195 no_profile 바람흔적쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17338 01-04
194 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 19690 01-03
193 나너우리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 35853 12-29
192
안녕하세요 댓글12
no_profile 메에에에리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17453 03-09
191
안녕하세용 댓글13
no_profile 메에에에리쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17169 03-09
190 no_profile 구루구루쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17594 03-04
189 no_profile 구루구루쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 18003 03-04
188 no_profile 곰식이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17832 02-21
187 no_profile fran쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17607 02-21

검색


Copyright © 소유하신 도메인. All rights reserved.