ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Need help writing a script? Have any question about ScriptFTP?
I have two files that are downloaded weekly. The files are in the following format:

056_TheReconstruction_053014_Segment1.mp3
057_TheReconstruction_053014_Segment2.mp3

What I need to do is strip the first 4 Chars from the front then remove the date in the middle.

Any help appreciated.

Thanks
Nitro
Hello Nitro,

This can be done with TEXTCUT and TEXTLENGTH commands. One question, do the name that goes between the first number and the date (TheReconstruction) is always of the same length? Knowing this I could give you an example.
Yes the text is always the same length.The only thing that every changes is the numbers.

Here is the current script:
Code: Select allLOGTO("C:\radio\scripts\LOGS\reconstruction.log",APPEND) $nrt="removed" $nrtu="removed" $nrtp="removed" #Download The Reconstruction OPENHOST($nrt,$nrtu,$nrtp) LOCALCHDIR("C:\radio\shows\reconstruction\") $nrtremote=("/The Reconstruction/") CHDIR($nrtremote) GETFILE("*.mp3") SETPASSIVE(ENABLED) CLOSEHOST EXIT