05-17-2021
11:06 AM
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
05-17-2021
11:06 AM
@ODO18 wrote:
....
(setq ftkeepname (open "c:\\users\\XXX\\Documents\\ArcGISFileData.txt" "w"))
....
... how to make the script not overwrite the text in the notepad, but instead to place the text in the next available blank line ....
Read about the options for the final argument in the (open) function:
....
(setq ftkeepname (open "c:\\users\\XXX\\Documents\\ArcGISFileData.txt" "a"))
....
Kent Cooper, AIA