text file

How to delete the first three lines from a text file ???[:(!]

well, one way would be to read the file line by line (File.READ) and then copy all the Lines after the third line to a new file. Then delete the old file and rename the new file. Hope this helps Daniel Zimmermann

Do you want to skip the first three lines while you import a file? Read three times from the file and ignore the value in the variable. Do you really want to delete them? Use zimiwings’ solution.[8D]