我正在尝试引用其字母可能会更改的驱动器。我想通过它的标签来引用它(例如,批处理文件中的 MyLabel (v:)。它可以通过 V:\ 来引用。我想通过 MyLabel 来引用它。
(这在 Experts Echange 上发布了一个月没有答案。让我们看看 SO 回答它的速度有多快)
我正在尝试引用其字母可能会更改的驱动器。我想通过它的标签来引用它(例如,批处理文件中的 MyLabel (v:)。它可以通过 V:\ 来引用。我想通过 MyLabel 来引用它。
(这在 Experts Echange 上发布了一个月没有答案。让我们看看 SO 回答它的速度有多快)
以前的答案似乎过于复杂,和/或不特别适合批处理文件。
这个简单的一行应该将所需的驱动器号放在变量 myDrive 中。显然将“我的标签”更改为您的实际标签。
for /f %%D in ('wmic volume get DriveLetter^, Label ^| find "My Label"') do set myDrive=%%D
如果从命令行运行(不在批处理文件中),则必须在两个位置将 %%D 更改为 %D。
设置变量后,您可以使用%myDrive%
. 例如
dir %myDrive%\someFolder
您可以为此使用 WMI 查询语言。看看http://msdn.microsoft.com/en-us/library/aa394592(VS.85).aspx的例子。您正在寻找的信息可通过例如 Win32_LogicalDisk 类的属性 VolumeName 获得, http: //msdn.microsoft.com/en-us/library/aa394173 (VS.85).aspx
SELECT * FROM Win32_LogicalDisk WHERE VolumeName="MyLabel"
此 bat 文件将为您提供驱动器标签中的驱动器号:
Option Explicit
Dim num, args, objWMIService, objItem, colItems
set args = WScript.Arguments
num = args.Count
if num <> 1 then
WScript.Echo "Usage: CScript DriveFromLabel.vbs <label>"
WScript.Quit 1
end if
Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_LogicalDisk")
For Each objItem in colItems
If strcomp(objItem.VolumeName, args.Item(0), 1) = 0 Then
Wscript.Echo objItem.Name
End If
Next
WScript.Quit 0
运行它:
cscript /nologo DriveFromLabel.vbs label
这是一个简单的批处理脚本 getdrive.cmd 从卷标中查找驱动器号。只需调用“getdrive MyLabel”或 getdrive “My Label”。
@echo off
setlocal
:: Initial variables
set TMPFILE=%~dp0getdrive.tmp
set driveletters=abcdefghijklmnopqrstuvwxyz
set MatchLabel_res=
for /L %%g in (2,1,25) do call :MatchLabel %%g %*
if not "%MatchLabel_res%"=="" echo %MatchLabel_res%
goto :END
:: Function to match a label with a drive letter.
::
:: The first parameter is an integer from 1..26 that needs to be
:: converted in a letter. It is easier looping on a number
:: than looping on letters.
::
:: The second parameter is the volume name passed-on to the script
:MatchLabel
:: result already found, just do nothing
:: (necessary because there is no break for for loops)
if not "%MatchLabel_res%"=="" goto :eof
:: get the proper drive letter
call set dl=%%driveletters:~%1,1%%
:: strip-off the " in the volume name to be able to add them again further
set volname=%2
set volname=%volname:"=%
:: get the volume information on that disk
vol %dl%: > "%TMPFILE%" 2>&1
:: Drive/Volume does not exist, just quit
if not "%ERRORLEVEL%"=="0" goto :eof
set found=0
for /F "usebackq tokens=3 delims=:" %%g in (`find /C /I "%volname%" "%TMPFILE%"`) do set found=%%g
:: trick to stip any whitespaces
set /A found=%found% + 0
if not "%found%"=="0" set MatchLabel_res=%dl%:
goto :eof
:END
if exist "%TMPFILE%" del "%TMPFILE%"
endlocal