Win32 API 日本語リファレンス
ホームStorage.FileSystem › GetVolumePathNameW

GetVolumePathNameW

関数
ファイルパスからそのボリュームのマウントパスを取得する。
DLLKERNEL32.dll文字セットUnicode (-W)呼出規約winapiSetLastErrorあり対応OSWindows XP 以降

シグネチャ

// KERNEL32.dll  (Unicode / -W)
#include <windows.h>

BOOL GetVolumePathNameW(
    LPCWSTR lpszFileName,
    LPWSTR lpszVolumePathName,
    DWORD cchBufferLength
);

パラメーター

名前方向
lpszFileNameLPCWSTRin
lpszVolumePathNameLPWSTRout
cchBufferLengthDWORDin

戻り値の型: BOOL

各言語での呼び出し定義

// KERNEL32.dll  (Unicode / -W)
#include <windows.h>

BOOL GetVolumePathNameW(
    LPCWSTR lpszFileName,
    LPWSTR lpszVolumePathName,
    DWORD cchBufferLength
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("KERNEL32.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
static extern bool GetVolumePathNameW(
    [MarshalAs(UnmanagedType.LPWStr)] string lpszFileName,   // LPCWSTR
    [MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpszVolumePathName,   // LPWSTR out
    uint cchBufferLength   // DWORD
);
<DllImport("KERNEL32.dll", CharSet:=CharSet.Unicode, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function GetVolumePathNameW(
    <MarshalAs(UnmanagedType.LPWStr)> lpszFileName As String,   ' LPCWSTR
    <MarshalAs(UnmanagedType.LPWStr)> lpszVolumePathName As System.Text.StringBuilder,   ' LPWSTR out
    cchBufferLength As UInteger   ' DWORD
) As Boolean
End Function
' lpszFileName : LPCWSTR
' lpszVolumePathName : LPWSTR out
' cchBufferLength : DWORD
Declare PtrSafe Function GetVolumePathNameW Lib "kernel32" ( _
    ByVal lpszFileName As LongPtr, _
    ByVal lpszVolumePathName As LongPtr, _
    ByVal cchBufferLength As Long) As Long
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

GetVolumePathNameW = ctypes.windll.kernel32.GetVolumePathNameW
GetVolumePathNameW.restype = wintypes.BOOL
GetVolumePathNameW.argtypes = [
    wintypes.LPCWSTR,  # lpszFileName : LPCWSTR
    wintypes.LPWSTR,  # lpszVolumePathName : LPWSTR out
    wintypes.DWORD,  # cchBufferLength : DWORD
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('KERNEL32.dll')
GetVolumePathNameW = Fiddle::Function.new(
  lib['GetVolumePathNameW'],
  [
    Fiddle::TYPE_VOIDP,  # lpszFileName : LPCWSTR
    Fiddle::TYPE_VOIDP,  # lpszVolumePathName : LPWSTR out
    -Fiddle::TYPE_INT,  # cchBufferLength : DWORD
  ],
  Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"
#[link(name = "kernel32")]
extern "system" {
    fn GetVolumePathNameW(
        lpszFileName: *const u16,  // LPCWSTR
        lpszVolumePathName: *mut u16,  // LPWSTR out
        cchBufferLength: u32  // DWORD
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("KERNEL32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern bool GetVolumePathNameW([MarshalAs(UnmanagedType.LPWStr)] string lpszFileName, [MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpszVolumePathName, uint cchBufferLength);
"@
$api = Add-Type -MemberDefinition $sig -Name 'KERNEL32_GetVolumePathNameW' -Namespace Win32 -PassThru
# $api::GetVolumePathNameW(lpszFileName, lpszVolumePathName, cchBufferLength)
#uselib "KERNEL32.dll"
#func global GetVolumePathNameW "GetVolumePathNameW" wptr, wptr, wptr
; GetVolumePathNameW lpszFileName, varptr(lpszVolumePathName), cchBufferLength   ; 戻り値は stat
; lpszFileName : LPCWSTR -> "wptr"
; lpszVolumePathName : LPWSTR out -> "wptr"
; cchBufferLength : DWORD -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "KERNEL32.dll"
#cfunc global GetVolumePathNameW "GetVolumePathNameW" wstr, var, int
; res = GetVolumePathNameW(lpszFileName, lpszVolumePathName, cchBufferLength)
; lpszFileName : LPCWSTR -> "wstr"
; lpszVolumePathName : LPWSTR out -> "var"
; cchBufferLength : DWORD -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; BOOL GetVolumePathNameW(LPCWSTR lpszFileName, LPWSTR lpszVolumePathName, DWORD cchBufferLength)
#uselib "KERNEL32.dll"
#cfunc global GetVolumePathNameW "GetVolumePathNameW" wstr, var, int
; res = GetVolumePathNameW(lpszFileName, lpszVolumePathName, cchBufferLength)
; lpszFileName : LPCWSTR -> "wstr"
; lpszVolumePathName : LPWSTR out -> "var"
; cchBufferLength : DWORD -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	kernel32 = windows.NewLazySystemDLL("KERNEL32.dll")
	procGetVolumePathNameW = kernel32.NewProc("GetVolumePathNameW")
)

// lpszFileName (LPCWSTR), lpszVolumePathName (LPWSTR out), cchBufferLength (DWORD)
r1, _, err := procGetVolumePathNameW.Call(
	uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpszFileName))),
	uintptr(lpszVolumePathName),
	uintptr(cchBufferLength),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function GetVolumePathNameW(
  lpszFileName: PWideChar;   // LPCWSTR
  lpszVolumePathName: PWideChar;   // LPWSTR out
  cchBufferLength: DWORD   // DWORD
): BOOL; stdcall;
  external 'KERNEL32.dll' name 'GetVolumePathNameW';
result := DllCall("KERNEL32\GetVolumePathNameW"
    , "WStr", lpszFileName   ; LPCWSTR
    , "Ptr", lpszVolumePathName   ; LPWSTR out
    , "UInt", cchBufferLength   ; DWORD
    , "Int")   ; return: BOOL
●GetVolumePathNameW(lpszFileName, lpszVolumePathName, cchBufferLength) = DLL("KERNEL32.dll", "bool GetVolumePathNameW(char*, char*, dword)")
# 呼び出し: GetVolumePathNameW(lpszFileName, lpszVolumePathName, cchBufferLength)
# lpszFileName : LPCWSTR -> "char*"
# lpszVolumePathName : LPWSTR out -> "char*"
# cchBufferLength : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。