在 Windows 上使用 Python 将文档打印到打印机 [WinError 1155]

发布于 2025-01-10 00:04:06 字数 185 浏览 0 评论 0原文

我正在使用操作系统模块尝试将文档打印到打印机,但是我收到操作系统错误,指出 - [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玩物 2025-01-17 00:04:06

提供具有此扩展名的文件名,例如 .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")

双手揣兜 2025-01-17 00:04:06

写下这个

os.startfile("FileName.txt") 

或“FileName.pdf”。没有“打印”

write this

os.startfile("FileName.txt") 

or "FileName.pdf". Without "print"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文