-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge-emails-script.py
39 lines (31 loc) · 1.69 KB
/
merge-emails-script.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os
def get_new_output_file(base_path, counter):
return f"{base_path}_{counter}.txt"
def merge_text_files(input_folder, output_base_path, max_size_bytes=4 * 1024 * 1024): # 4 MB
file_counter = 1
current_size = 0
output_file = get_new_output_file(output_base_path, file_counter)
with open(output_file, 'w', encoding='utf-8') as outfile:
for filename in os.listdir(input_folder):
if filename.endswith(".txt"):
file_path = os.path.join(input_folder, filename)
with open(file_path, 'r', encoding='utf-8') as infile:
content = infile.read()
content_size = len(content.encode('utf-8'))
if current_size + content_size > max_size_bytes:
# Close current file and open a new one
outfile.close()
file_counter += 1
output_file = get_new_output_file(output_base_path, file_counter)
outfile = open(output_file, 'w', encoding='utf-8')
current_size = 0
outfile.write(content)
outfile.write("\n\n--- Next Email ---\n\n")
current_size += content_size + len("\n\n--- Next Email ---\n\n".encode('utf-8'))
print(f"Processed: {filename}", end='\r')
print(f"\nMerge completed. Created {file_counter} file(s).")
if __name__ == "__main__":
# Adjust this line
input_folder = r"C:\path\to\your\input\folder"
output_base_path = r"C:\path\to\your\merged_emails"
merge_text_files(input_folder, output_base_path)