0
Bu temel bir istemci sunucu soket programıdır. İstemci sunucuya dosya gönderir ve sunucu gedit'i kullanarak açar.gedit'te bir metin dosyasının açık olup olmadığını nasıl kontrol edilir
p = subprocess.Popen("gedit file", shell=True, stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
Ben kodu
while file_open in gedit:
wait()
after file_closed and saved
send to client
sanırım
Olası kopyası [Python: Dosya kontrol ediliyor] (http://stackoverflow.com/questions/13371444/python-check-file-is-locked) – CarlosCarucce