Hi,
I receive data in files with FTPRCV types dumped into my folder
I need to loop through the folder and save these files as txt files
I receive files as RR20240628060101, RR20240628060102.....
Also, if file types are 20240628060101.FTPRCV, 20240628060102.FTPRCV........then how would the code look like
My code is unfinished
How to save all these files as text file with the same names?
I receive data in files with FTPRCV types dumped into my folder
I need to loop through the folder and save these files as txt files
I receive files as RR20240628060101, RR20240628060102.....
Also, if file types are 20240628060101.FTPRCV, 20240628060102.FTPRCV........then how would the code look like
My code is unfinished
Code:
Dim strfile as string
strfile = Dir("C:\dailyfolder\*RR2024*")
Do While Len(strfile) > 0
.........