Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sd_file_conversion/txt_to_csv_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def start_converting(sd_dir:str = "./",
save_path = save_path

# Get a list of files in the specified directory with a '.txt' extension
files = [file for file in os.listdir(sd_dir) if file.endswith('.txt')]
files = [file for file in os.listdir(sd_dir) if file.endswith('.TXT')]

# Sort the files in reverse order (latest files first)
if files:
Expand Down
Loading