I am trying to remove the Ist part and last part of the file name.
I have a filename like /external/prop/new/test/File.Name.will.BE.this.extension.date
I want to remove the first part of the directory (/external) and the last part of the filename extension (.date) so my output file name would be /prop/new/test/File.Name.will.BE.this.extension
eg:
- OLD FILE name:
/external/prop/new/test/FACL.Prop.for.BBG.txt.09242012 NEW FILENAME:
/prop/new/test/FACL.Prop.for.BBG.txtOLD FILE name:
/external/prop/old/test/set2/FACL.Prop.FITCH.csv.09242012- NEW FILENAME:
/prop/old/test/set2/FACL.Prop.FITCH.csv
I had tried something like
my($FinalName, $Finalextension) = split /\.(?!.*\.)/, substr($Fname,$Flength);
but it is not quite helpful.
/external will always remain the same but the date will always vary and I can't just remove the numbers as the .extension can be numbers.