de l'importation Popen de sous-processus
nom = « test.txt »
outfile = s'ouvrir (nommé, « W ")
commande = [« LS », « - l »]
sub_proc = Popen (commande, stdout=outfile)
sub_proc.wait () # attente jusqu'au sous-processus est de finition
outfile.close ()
|