识别文件的格式

发布于 2024-12-09 03:45:14 字数 164 浏览 2 评论 0原文

在linux中,我们有一个名为“file”的实用程序,它可以帮助我们确定文件的标识。有没有可以完成相同工作的 python 模块?

我不喜欢使用 subprocess.Popen(['file', 'blah.blah']), 因为它是平台相关的。例如,Windows没有“文件”(尽管可以下载)。

In linux, we have a utility called “file”, which helps us to determine the identification of a file. Is there any python module that can do the same job?

I don't prefer to use subprocess.Popen(['file', 'blah.blah']),
because it is platform dependent. For instance, windows do not have “file” (although it can be downloaded).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

亽野灬性zι浪 2024-12-16 03:45:14

魔法

不要忘记DLL

magic

Don't forget the DLL.

落花浅忆 2024-12-16 03:45:14

Ignacio 提到了 Magic 库,但如果您确信文件名足以了解文件类型(通过扩展名),您也可以使用标准库来实现:

>>> import mimetypes
>>> mimetypes.guess_type('__init__.py')
('text/x-python', None)

请参阅 Mimetypes 模块。然而,这并不能替代实际检查文件内容并确定其类型。

Ignacio mentioned the Magic library, but you could also do it with the standard library if you're confident that the filename is enough to know the file type from (by extension):

>>> import mimetypes
>>> mimetypes.guess_type('__init__.py')
('text/x-python', None)

See the Mimetypes module in the standard library. This however isn't a replacement for actually inspecting the content of the file and figuring out its type.

丿*梦醉红颜 2024-12-16 03:45:14

分别有用于图形和声音文件的标准模块 imghdrsndhdr

There are standard modules imghdr and sndhdr for graphic and sound files, respectively.

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