I'm new in my development role, I have to automatically pick up multiple files in specific format once per week from the FTP folder.
The file names are in this format:
PODLM_10011548501_PTY002323_8569865954.tiff
PODLM_10011548502_PTY002324_8569865955.tiff
After picking them up, I need to save the filename info into an existing SQL table called order
as follows:
Order
table:
id CodeNumber PPNumber ClientID
1 10011548501 PTY002323 8569865954
2 10011548502 PTY002324 8569865955
Any advice or solution will be appreciated
Thanks