ro  fr  en  es  pt  ar  zh  hi  de  ru
ART 2.0 ART 3.0 ART 4.0 ART 5.0 ART 6.0 Pinterest

पायथन: दस्तावेज़ और DOCX फ़ाइलों को उसी फ़ोल्डर से पीडीएफ में कैसे परिवर्तित करें

On March 16, 2022, in Leadership Quantum-XX, by Neculai Fantanaru

आप यहां पूरा कोड देख सकते हैं:Https: // passatin.com / 4yl0ir ईपी

इंस्टॉलपायथन

#-------------------------------------------------------------------------------
# Name:        Convert Doc and DocX to PDF
# Purpose:
#
# Author:      Fantanaru Neculai
#
# Created:     18/03/2022
# Copyright:   (c) Fantanaru Neculai 2022
#-------------------------------------------------------------------------------


# pip install pywin32
# pip install docx2txt

import docx2txt
from win32com import client

import os

files_from_folder = r"c:\\doc"

directory = os.fsencode(files_from_folder)

amount = 1

word = client.DispatchEx("Word.Application")
word.Visible = True

for file in os.listdir(directory):
    filename = os.fsdecode(file)
    print(filename)

    if filename.endswith('docx'):
        text = docx2txt.process(os.path.join(files_from_folder, filename))

        print(f'{filename} transfered ({amount})')
        amount += 1
        new_filename = filename.split('.')[0] + '.txt'

        try:
            with open(os.path.join(files_from_folder + r'\txt_files', new_filename), 'w', encoding='utf-8') as t:
                t.write(text)
        except:
            os.mkdir(files_from_folder + r'\txt_files')
            with open(os.path.join(files_from_folder + r'\txt_files', new_filename), 'w', encoding='utf-8') as t:
                t.write(text)
    elif filename.endswith('doc'):
        doc = word.Documents.Open(os.path.join(files_from_folder, filename))
        text = doc.Range().Text
        doc.Close()

        print(f'{filename} transfered ({amount})')
        amount += 1
        new_filename = filename.split('.')[0] + '.txt'

        try:
            with open(os.path.join(files_from_folder + r'\txt_files', new_filename), 'w', encoding='utf-8') as t:
                t.write(text)
        except:
            os.mkdir(files_from_folder + r'\txt_files')
            with open(os.path.join(files_from_folder + r'\txt_files', new_filename), 'w', encoding='utf-8') as t:
                t.write(text)
word.Quit()

That's all folks.

इसके अलावा, यह देखेंसंस्करण 2या संस्करण 3यासंस्करण 4यासंस्करण 5यासंस्करण 6यासंस्करण 7


Latest articles accessed by readers:

  1. An Eye To See And A Mind To Understand
  2. Turn Towards Me With An Eye Full Of Your Own Gaze
  3. The Snapshot Of Magic In God's Universe
  4. Rhythm Of My Heart

Donate via Paypal

Alternate Text

RECURRENT DONATION

Donate monthly to support
the NeculaiFantanaru.com project

SINGLE DONATION

Donate the desired amount to support
the NeculaiFantanaru.com project

Donate by Bank Transfer

Account Ron: RO34INGB0000999900448439

Open account at ING Bank

Join The Neculai Fantanaru Community



* Note: If you want to read all my articles in real time, please check the romanian version !

decoration
About | Site Map | Partners | Feedback | Terms & Conditions | Privacy | RSS Feeds
© Neculai Fântânaru - All rights reserved