在 Windows 上使用 Python 将文档打印到打印机 [WinError 1155]
我正在使用操作系统模块尝试将文档打印到打印机,但是我收到操作系统错误,指出 - [WinError 1155] 没有应用程序与此操作的指定文件关联。如何解决该错误以便成功打印?
下面的代码
import os
os.startfile('FileName',"print")
I am using the os module to try to print a document to a printer, however I am receiving a OS Error stating - [WinError 1155] No application is associated with the specified file for this operation. How can I address the error in order to print successfully?
Below Code
import os
os.startfile('FileName',"print")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提供具有此扩展名的文件名,例如 .txt 或其他与操作系统相关的文件名。
仅文件名不足以打印。
os.startfile("文件名.txt", "打印")
Give file name with this extension like .txt, or other that associate with operating system.
Only file name is not enough for printing.
os.startfile("FileName.txt", "print")
写下这个
或“FileName.pdf”。没有“打印”
write this
or "FileName.pdf". Without "print"