Código Python:
Ver original#### Script to try to write something down in notepad
import win32api
import win32gui
import win32con
import time
# get the window handle of the blank, minimized notepad window
hwnd = win32gui.FindWindowEx(0, 0, 0, "probando.txt: Bloc de notas")
# print it just for kicks
print hwnd
win32gui.ShowWindow(hwnd, win32con.SW_SHOWNORMAL)
#this restores the proper window, so we know we have correct handle
#just to give it a little pause
time.sleep(2)
print "trying to post message"
#try to send it a return key
for i in range(26):
win32api.keybd_event(ord('A')+i, 0) #see http://msdn.microsoft.com/en-us/library/ms646304(VS.85).aspx
No se que trates de hacer pero hay mejores formas de trabajar con archivos.