No worries
Hope these steps could help you resolve this
—use a assign activity and mention like this
Out_filepath = Directory.GetFiles(“yourfolderpath”,”*.txt”)
—where Out_filepath is a variable of type string array
—now use a for each loop and pass the above variable a string input and change the type argument as string the property panel of for each loop activity
—inside the loop use a assign activity like this
Out_text = String.Join(Environment.NewLine, item.Split(Environment.NewLine.ToArray()).ToList().RemoveRange(0,10).ToArray)
—now we can pass this text as input to another text file using write text file and save it with a name followed by time stamp so that it will create a new file
Like this in the file path of write text file activity
“Yourfolderpath\yourfilename\”+”_”+Now.ToString(“dd_MM_yy”)+”.txt”
So this will create a new file of all existing file with first 10 lines removed
Simple isn’t it
Hope this would help you
Kindly try this and let know for any queries or clarification
Cheers @hsendel