如何使用 Delphi 在 Windows 中从 USB 驱动器挂载分区?

how to mount partitions from USB drives in Windows using Delphi?

我想在 Windows (XP) 中从 USB 驱动器挂载所有分区。我的意思是我想为他们每个人分配驱动器号(当他们没有驱动器号时)。
操作系统会自动执行此操作,但在某些情况下此类程序很有用。

我知道如何确定驱动器是否在 USB 上。
到目前为止,我的代码是:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
type
   STORAGE_QUERY_TYPE = (PropertyStandardQuery = 0, PropertyExistsQuery, PropertyMaskQuery, PropertyQueryMaxDefined);
   TStorageQueryType = STORAGE_QUERY_TYPE;

   STORAGE_PROPERTY_ID = (StorageDeviceProperty = 0, StorageAdapterProperty);
   TStoragePropertyID = STORAGE_PROPERTY_ID;

   STORAGE_PROPERTY_QUERY = packed record
      PropertyId: STORAGE_PROPERTY_ID;
      QueryType: STORAGE_QUERY_TYPE;
      AdditionalParameters: array[0..9] of AnsiChar;
   end;
   TStoragePropertyQuery = STORAGE_PROPERTY_QUERY;

   STORAGE_BUS_TYPE = (BusTypeUnknown = 0, BusTypeScsi, BusTypeAtapi, BusTypeAta, BusType1394, BusTypeSsa, BusTypeFibre,
      BusTypeUsb, BusTypeRAID, BusTypeiScsi, BusTypeSas, BusTypeSata, BusTypeMaxReserved = $7F);
   TStorageBusType = STORAGE_BUS_TYPE;

   STORAGE_DEVICE_DESCRIPTOR = packed record
      Version: DWORD;
      Size: DWORD;
      DeviceType: Byte;
      DeviceTypeModifier: Byte;
      RemovableMedia: Boolean;
      CommandQueueing: Boolean;
      VendorIdOffset: DWORD;
      ProductIdOffset: DWORD;
      ProductRevisionOffset: DWORD;
      SerialNumberOffset: DWORD;
      BusType: STORAGE_BUS_TYPE;
      RawPropertiesLength: DWORD;
      RawDeviceProperties: array[0..0] of AnsiChar;
   end;
   TStorageDeviceDescriptor = STORAGE_DEVICE_DESCRIPTOR;

const
   IOCTL_STORAGE_QUERY_PROPERTY = $002D1400;  

var i: Integer;
   H: THandle;
   USBDrives: array of Byte;
   Query: TStoragePropertyQuery;
   dwBytesReturned: DWORD;
   Buffer: array[0..1023] of Byte;
   sdd: TStorageDeviceDescriptor absolute Buffer;  

begin
   SetLength(UsbDrives, 0);
   SetErrorMode(SEM_FAILCRITICALERRORS);
   for i := 0 to 99 do
   begin
      H := CreateFile(PChar('\\\\.\\PhysicalDrive' + IntToStr(i)), 0, FILE_SHARE_READ or FILE_SHARE_WRITE, nil, OPEN_EXISTING, 0, 0);
      if H <> INVALID_HANDLE_VALUE then
      begin
         try
            dwBytesReturned := 0;
            FillChar(Query, SizeOf(Query), 0);
            FillChar(Buffer, SizeOf(Buffer), 0);
            sdd.Size := SizeOf(Buffer);
            Query.PropertyId := StorageDeviceProperty;
            Query.QueryType := PropertyStandardQuery;
            if DeviceIoControl(H, IOCTL_STORAGE_QUERY_PROPERTY, @Query, SizeOf(Query), @Buffer, SizeOf(Buffer), dwBytesReturned, nil) then
               if sdd.BusType = BusTypeUsb then
               begin
                  SetLength(USBDrives, Length(USBDrives) + 1);
                  UsbDrives[High(USBDrives)] := Byte(i);
               end;
         finally
            CloseHandle(H);
         end;
      end;
   end;
   for i := 0 to High(USBDrives) do
   begin
     //
   end;
end.

但我不知道如何访问每个驱动器上的分区并安装它们。
你能帮帮我吗?


看看卷管理功能 - http://msdn.microsoft.com/en-us/library/aa365730(v=vs.85).aspx

FirstFirstVolume、FindNextVolume、FindVolumeClose 会将分区列为 \\\\\\\\\\\\\\\\?\\\\\\\\Volume{Guid} 名称。

Createfile 应该能够选择卷名,以便您上面的代码可以检查它的 USB。

SetVolumeMountPoint 允许您将卷安装为驱动器号或文件夹安装点。

这篇博文讨论了卷名 - http://blogs.msdn.com/b/adioltean/archive/2005/04/16/408947.aspx