从 Python 中查找系统硬盘驱动器?
我正在为我当前的应用程序开发一个软件安装程序。需要安装到系统硬盘上。如何检测系统驱动器并从Python返回盘符?
win32 扩展有用吗? Python预打包的os模块怎么样?
I am working on a software installer for my current application. It needs to be installed to the System HDD. How owuld I detect the system drive and return the letter from Python?
Would the win32 extensions be useful? How about the os module pre packaged with Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是在 Win32 平台上返回系统驱动器号的方法:
上面的代码片段返回系统驱动器号。就我而言(以及 Windows 上的大多数情况)C:
This is how to return the letter of the System drive on a Win32 platform:
The above snippet returns the system drive letter. In my case ( and most cases on windows) C:
如果您安装了 win32 扩展,则以下内容将为您提供所需的信息:
忽略最后一项,因为 win32 的 GetLogicalDriveStrings 函数。
If you install the win32 extensions, the following will get you the information you want:
Ignore the last item, due to a terminating character in the string returned by win32's GetLogicalDriveStrings function.
输出:
Output: