如何在python中查找文件系统类型

发布于 2024-08-31 17:59:26 字数 109 浏览 6 评论 0原文

我正在 python 中寻找一种方法来找出给定路径使用哪种类型的文件系统。我想以跨平台的方式做到这一点。在 Linux 上,我可以获取 df -T 的输出,但这在 OSX 或 Windows 上不起作用。

I'm looking for a way in python to find out which type of file system is being used for a given path. I'm wanting to do this in a cross platform way. On linux I could just grab the output of df -T but that won't work on OSX or windows.

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

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

发布评论

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

评论(3

旧城空念 2024-09-07 17:59:26

请注意——不同的平台实际上是不同的。

在 Mac OS X 和支持它的 Linux 上使用 lsvfs。

使用在 Windows 上。

使用 if 语句来决定。

Take the hint -- different platforms are actually different.

Use lsvfs on Mac OS X and those Linux that support it.

Use this on Windows.

Use an if-statement to decide.

谎言 2024-09-07 17:59:26

Linux 上的 os.popen('/sbin/fdisk -l /dev/sda')

os.popen('/sbin/fdisk -l /dev/sda') on Linux

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