AppleScript: ¿Cómo escribir en una línea específica de un archivo de texto?

2

Contenido de muestra de un archivo .txt en mi Mac:

This is sentence A.
This is sentence B.
This is sentence C.
This is sentence D.
This is sentence E.

Quiero implementar una subrutina, como esta:

writeTextAtSpecificLine(("This is the newcomer sentence." & linefeed), 4)

para que el archivo de texto se vea así:

This is sentence A.
This is sentence B.
This is sentence C.
This is the newcomer sentence
This is sentence D.
This is sentence E.

Sé que puedo lograr el resultado deseado al hacer que cada línea del archivo de texto sea su propio elemento en un objeto AppleScript list , así:

set theIndividualLinesOfTextFileAsList to paragraphs of (read theFilepathOfTxtFile)

Luego podría dividir el list , en función del número de línea deseado, y luego volver a agregarlo todo.

Pero, ¿existe un método más eficiente?

Mi archivo .txt real es mucho más largo que el contenido de muestra anterior.

    
pregunta rubik's sphere 20.06.2017 - 12:48

2 respuestas

3

Versión editada:

set selected_file to ((path to documents folder as text) & "hom.txt") as alias
set text_data to "This is the newcomer sentence."

InsertLine(selected_file, text_data, 4)

on InsertLine(the_file, the_data, num_line)
    try
        set file_id to open for access the_file with write permission
        set text_data to read file_id

        -- CHECK EMPTY LINE
        if (paragraph num_line of text_data) ≠ "" then
            set the_offset to (offset of (paragraph num_line of text_data) in text_data) - 1
            set remaining_data to (the_data) & (text the_offset thru -1) of text_data
            set eof of file_id to the_offset
        else -- LINE IS EMPTY
            set num_line to num_line - 1
            set the_count to (count of (characters of (paragraph num_line of text_data))) - 1
            set the_offset to (offset of (paragraph num_line of text_data) in text_data) + the_count + 2
            set remaining_data to the_data & linefeed & ((text (the_offset + 1) thru -1) of text_data)
            set eof of file_id to the_offset - 1
        end if

        -- WRITE DATA TO FILE
        --write the_data to file_id -- INSERT LINE
        write remaining_data to file_id -- WRITE REMAINING DATA
        close access file_id
    on error
        try
            close access the_file
        end try
    end try
end InsertLine
    
respondido por el unlocked2412 20.06.2017 - 15:39
1

No estoy seguro de que esta sea la forma más eficiente, pero esto logrará lo que estás buscando. Funciona para mí en la última versión de Sierra

tell application "TextEdit" to make new paragraph at after third paragraph of text of document 1 with data "This is the newcomer sentence. \n"
    
respondido por el wch1zpink 21.06.2017 - 05:36

Lea otras preguntas en las etiquetas