奇怪的问题,一个 py 程序 A 运行正常,用另一个 py 程序 B 调用 A,运行结果就有问题。
两个 py 文件在不同文件夹,
程序 A 调用 winrar 备份文件,主要代码
def on_clickbakf(self):
if self.extchanged==True:
lst2file('e:\\py3\\bakfile\\mydocument.nlst',self.listView_Ext.model().stringList())
lst2file('e:\\py3\\bakfile\\mydocument2.nlsttxt',self.listView_E2.model().stringList())
if self.pathchanged==True:
lst2file('e:\\py3\\bakfile\\mydocument.lst',self.listView_Path.model().stringList())
lst2file('e:\\py3\\bakfile\\mydocument2.lsttxt',self.listView_P2.model().stringList())
#"E:\Program Files (x86)\WinRAR\WinRAR.exe" a -S -v2000M -M5 -RR -TK -ED -EP1 -R -INUL -IBCK -Y %Choice% -z%%f %%~nf @%%f -x@%%~nf.nlst -pwood753
#line='"E:\Program Files (x86)\WinRAR\WinRAR.exe" a -S -v2000M -M5 -RR -TK -ED -EP1 -R -INUL -IBCK -Y '
exe='"E:\Program Files (x86)\WinRAR\WinRAR.exe"'
params=' a -S -v2000M -M5 -RR -TK -ED -EP1 -R -INUL -IBCK -Y '
n=self.spinBox.value()
if n>0:
st=' -tn'+str(n)+'d '
params+=st
params+='-zmydocument.lst '
#文件路径
st=self.lineEditd.text()
if len(st)>0:
params+=' '+st
st=self.lineEditf.text()
if len(st)>0:
params+=st
else:
params+='mydocument'
params+=' @
mydocument.lst
[email protected]'
st=self.lineEdit_password.text()
if len(st)>0:
params+=' -p'+st
#print(params)
self.lineEdit_file.setText(exe+params)
print(exe+params)
import pyperclip
pyperclip.copy(exe+params)
#os.system(exe+params)
#win32api.ShellExecute(0, 'open', exe, params,'',1) #改行执行结果有误,可能 exe、params 不能分开调用
os.popen(exe+params) #不阻塞当前进程 ; exe+params 一起发送,结果正确
file_append_line('e:\\py3\\bakfile\\BackupList.Log',params+'\n')
两次调用的日志参数记录一样,但是结果不同,B 调用 A 时,备份的文件夹和日期参数都不对
a -S -v2000M -M5 -RR -TK -ED -EP1 -R -INUL -IBCK -Y -tn9d -zmydocument.lst e:\downloads\at1 @
mydocument.lst
[email protected] a -S -v2000M -M5 -RR -TK -ED -EP1 -R -INUL -IBCK -Y -tn9d -zmydocument.lst e:\downloads\at2 @
mydocument.lst
[email protected]百思不得其解