我一直在寻找原始问题的答案。我如何确定(以编程方式)我的 win32api.ShellExecute 语句成功执行,如果成功执行,则执行 os.remove() 语句。
研究我发现 ShellExecute() 调用返回 HINSTANCE。进一步挖掘我发现 ShellExecute() 如果成功,将返回 HINSTANCE > 32。我现在的问题/问题是,我如何使用它来控制程序的其余部分?我尝试使用if HINSTANCE> 32:
语句来控制下一部分,但我收到一条NameError: name 'hinstance' is not defined
消息。通常这不会让我感到困惑,因为这意味着我需要在引用它之前定义变量“hinstance”;但是,因为我认为 ShellExecute 应该返回 HINSTANCE,所以我认为它可以使用?
这是我试图实现它的完整代码。请注意,在我的 print_file() def 中,我将 hinstance 分配给完整的 win32api.ShellExecute() 命令,以尝试捕获 hinstance 并在函数末尾显式返回它。这也不起作用。
import win32print
import win32api
from os.path import isfile, join
import glob
import os
import time
source_path = "c:\\temp\\source\\"
def main():
printer_name = win32print.GetDefaultPrinter()
while True:
file_queue = [f for f in glob.glob("%s\\*.txt" % source_path) if isfile(f)]
if len(file_queue) > 0:
for i in file_queue:
print_file(i, printer_name)
if hinstance > 32:
time.sleep(.25)
delete_file(i)
print "Filename: %r has printed" % i
print
time.sleep(.25)
print
else:
print "No files to print. Will retry in 15 seconds"
time.sleep(15)
def print_file(pfile, printer):
hinstance = win32api.ShellExecute(
0,
"print",
'%s' % pfile,
'/d:"%s"' % printer,
".",
0
)
return hinstance
def delete_file(f):
os.remove(f)
print f, "was deleted!"
def alert(email):
pass
main()