gpt4 book ai didi

python - 在 Python 中更改字母后检测外部硬盘驱动器

转载 作者:可可西里 更新时间:2023-11-01 11:53:10 26 4
gpt4 key购买 nike

我正在编写一个 Python 程序来扫描和跟踪多个外部硬盘驱动器上的文件。它将文件路径作为字符串保存在本地文件中。问题是有时当我将外部硬盘插入不同的计算机时,盘符会发生变化,并且之前存储的路径将无用。我想跟踪驱动器并更改本地记录,如果插入相同的硬盘驱动器但盘符已更改。现在,我能想到两种可能性:

  1. 在驱动器的根目录中保留一个标识文件并扫描所有驱动器号以检测具有正确标识文件的驱动器。
  2. 扫描开头的所有字母以检测与本地记录相同路径中的文件。如果找到,请识别驱动器。

我想知道是否有任何类型的现有 HDD(或分区)标识可用于访问驱动器(盘符除外)?

最佳答案

使用供应商 ID 和设备 ID 来识别驱动器。

#!/usr/bin/python
import sys
import usb.core
# find USB devices
dev = usb.core.find(find_all=True)
# loop through devices, printing vendor and product ids in decimal and hex
for cfg in dev:
sys.stdout.write('Decimal VendorID=' + str(cfg.idVendor) + ' & ProductID=' + str(cfg.idProduct) + '\n')
sys.stdout.write('Hexadecimal VendorID=' + hex(cfg.idVendor) + ' & ProductID=' + hex(cfg.idProduct) + '\n\n')

Use PyUSB to Find Vendor and Product IDs for USB Devices

类似问题:usb device identification

关于python - 在 Python 中更改字母后检测外部硬盘驱动器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24512265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com