Win32 API 日本語リファレンス
ホームUI.Controls › DlgDirSelectExA

DlgDirSelectExA

関数
リストボックスで選択中のファイルやディレクトリ名を取得する(ANSI版)。
DLLUSER32.dll文字セットANSI (-A)呼出規約winapiSetLastErrorあり対応OSWindows Vista 以降

シグネチャ

// USER32.dll  (ANSI / -A)
#include <windows.h>

BOOL DlgDirSelectExA(
    HWND hwndDlg,
    LPSTR lpString,
    INT chCount,
    INT idListBox
);

パラメーター

名前方向説明
hwndDlgHWNDinリストボックスを含むダイアログボックスへのハンドル。
lpStringLPSTRout選択されたパスを受け取るバッファーへのポインター。
chCountINTinlpString が指すバッファーの長さ( TCHAR 単位)。
idListBoxINTinダイアログボックス内のリストボックスの識別子。

戻り値の型: BOOL

公式ドキュメント

単一選択リストボックスから現在の選択項目を取得します。リストボックスは DlgDirList 関数によって設定されており、選択項目がドライブ文字、ファイル名、またはディレクトリ名であることを前提とします。(ANSI)

戻り値

型: BOOL

現在の選択項目がディレクトリ名である場合、戻り値は 0 以外の値です。

現在の選択項目がディレクトリ名でない場合、戻り値は 0 です。拡張エラー情報を取得するには、GetLastError を呼び出します。

解説(Remarks)

DlgDirSelectEx 関数は、選択項目を lpString パラメーターが指すバッファーにコピーします。現在の選択項目がディレクトリ名またはドライブ文字である場合、DlgDirSelectEx は囲んでいる角かっこ(ドライブ文字の場合はハイフンも)を取り除き、その名前または文字をそのまま新しいパスに挿入できるようにします。選択項目がない場合、 lpString は変更されません。

文字列がバッファーと同じ長さかそれ以上の場合、バッファーには切り詰められた文字列と終端の null 文字が格納されます。

DlgDirSelectEx はリストボックスに LB_GETCURSEL および LB_GETTEXT メッセージを送信します。この関数は、リストボックスから複数のファイル名を返すことを許可しません。リストボックスは複数選択リストボックスであってはなりません。複数選択リストボックスである場合、この関数は 0 以外の値を返さず、 lpString は変更されません。

Windows 95 以降: DlgDirSelectExW は Microsoft Layer for Unicode によってサポートされています。これを使用するには、Microsoft Layer for Unicode on Windows Me/98/95 Systems で説明されているとおり、特定のファイルをアプリケーションに追加する必要があります。

Examples

例については、Creating a Directory Listing in a Single-selection List Box を参照してください。

メモ

winuser.h ヘッダーは、UNICODE プリプロセッサ定数の定義に基づいてこの関数の ANSI 版または Unicode 版を自動的に選択するエイリアスとして DlgDirSelectEx を定義します。エンコーディング中立のエイリアスの使用と、エンコーディング中立でないコードを混在させると、コンパイルエラーまたは実行時エラーを引き起こす不一致が生じる可能性があります。詳細については、Conventions for Function Prototypes を参照してください。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での呼び出し定義

// USER32.dll  (ANSI / -A)
#include <windows.h>

BOOL DlgDirSelectExA(
    HWND hwndDlg,
    LPSTR lpString,
    INT chCount,
    INT idListBox
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
static extern bool DlgDirSelectExA(
    IntPtr hwndDlg,   // HWND
    [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpString,   // LPSTR out
    int chCount,   // INT
    int idListBox   // INT
);
<DllImport("USER32.dll", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function DlgDirSelectExA(
    hwndDlg As IntPtr,   ' HWND
    <MarshalAs(UnmanagedType.LPStr)> lpString As System.Text.StringBuilder,   ' LPSTR out
    chCount As Integer,   ' INT
    idListBox As Integer   ' INT
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
' hwndDlg : HWND
' lpString : LPSTR out
' chCount : INT
' idListBox : INT
Declare PtrSafe Function DlgDirSelectExA Lib "user32" ( _
    ByVal hwndDlg As LongPtr, _
    ByVal lpString As String, _
    ByVal chCount As Long, _
    ByVal idListBox As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

DlgDirSelectExA = ctypes.windll.user32.DlgDirSelectExA
DlgDirSelectExA.restype = wintypes.BOOL
DlgDirSelectExA.argtypes = [
    wintypes.HANDLE,  # hwndDlg : HWND
    wintypes.LPSTR,  # lpString : LPSTR out
    ctypes.c_int,  # chCount : INT
    ctypes.c_int,  # idListBox : INT
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('USER32.dll')
DlgDirSelectExA = Fiddle::Function.new(
  lib['DlgDirSelectExA'],
  [
    Fiddle::TYPE_VOIDP,  # hwndDlg : HWND
    Fiddle::TYPE_VOIDP,  # lpString : LPSTR out
    Fiddle::TYPE_INT,  # chCount : INT
    Fiddle::TYPE_INT,  # idListBox : INT
  ],
  Fiddle::TYPE_INT)
#[link(name = "user32")]
extern "system" {
    fn DlgDirSelectExA(
        hwndDlg: *mut core::ffi::c_void,  // HWND
        lpString: *mut u8,  // LPSTR out
        chCount: i32,  // INT
        idListBox: i32  // INT
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true)]
public static extern bool DlgDirSelectExA(IntPtr hwndDlg, [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpString, int chCount, int idListBox);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_DlgDirSelectExA' -Namespace Win32 -PassThru
# $api::DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
#uselib "USER32.dll"
#func global DlgDirSelectExA "DlgDirSelectExA" sptr, sptr, sptr, sptr
; DlgDirSelectExA hwndDlg, varptr(lpString), chCount, idListBox   ; 戻り値は stat
; hwndDlg : HWND -> "sptr"
; lpString : LPSTR out -> "sptr"
; chCount : INT -> "sptr"
; idListBox : INT -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "USER32.dll"
#cfunc global DlgDirSelectExA "DlgDirSelectExA" sptr, var, int, int
; res = DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
; hwndDlg : HWND -> "sptr"
; lpString : LPSTR out -> "var"
; chCount : INT -> "int"
; idListBox : INT -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; BOOL DlgDirSelectExA(HWND hwndDlg, LPSTR lpString, INT chCount, INT idListBox)
#uselib "USER32.dll"
#cfunc global DlgDirSelectExA "DlgDirSelectExA" intptr, var, int, int
; res = DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
; hwndDlg : HWND -> "intptr"
; lpString : LPSTR out -> "var"
; chCount : INT -> "int"
; idListBox : INT -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	user32 = windows.NewLazySystemDLL("USER32.dll")
	procDlgDirSelectExA = user32.NewProc("DlgDirSelectExA")
)

// hwndDlg (HWND), lpString (LPSTR out), chCount (INT), idListBox (INT)
r1, _, err := procDlgDirSelectExA.Call(
	uintptr(hwndDlg),
	uintptr(lpString),
	uintptr(chCount),
	uintptr(idListBox),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function DlgDirSelectExA(
  hwndDlg: THandle;   // HWND
  lpString: PAnsiChar;   // LPSTR out
  chCount: Integer;   // INT
  idListBox: Integer   // INT
): BOOL; stdcall;
  external 'USER32.dll' name 'DlgDirSelectExA';
result := DllCall("USER32\DlgDirSelectExA"
    , "Ptr", hwndDlg   ; HWND
    , "Ptr", lpString   ; LPSTR out
    , "Int", chCount   ; INT
    , "Int", idListBox   ; INT
    , "Int")   ; return: BOOL
●DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox) = DLL("USER32.dll", "bool DlgDirSelectExA(void*, char*, int, int)")
# 呼び出し: DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
# hwndDlg : HWND -> "void*"
# lpString : LPSTR out -> "char*"
# chCount : INT -> "int"
# idListBox : INT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "user32" fn DlgDirSelectExA(
    hwndDlg: ?*anyopaque, // HWND
    lpString: [*c]u8, // LPSTR out
    chCount: i32, // INT
    idListBox: i32 // INT
) callconv(std.os.windows.WINAPI) i32;
proc DlgDirSelectExA(
    hwndDlg: pointer,  # HWND
    lpString: ptr char,  # LPSTR out
    chCount: int32,  # INT
    idListBox: int32  # INT
): int32 {.importc: "DlgDirSelectExA", stdcall, dynlib: "USER32.dll".}
pragma(lib, "user32");
extern(Windows)
int DlgDirSelectExA(
    void* hwndDlg,   // HWND
    char* lpString,   // LPSTR out
    int chCount,   // INT
    int idListBox   // INT
);
ccall((:DlgDirSelectExA, "USER32.dll"), stdcall, Int32,
      (Ptr{Cvoid}, Ptr{UInt8}, Int32, Int32),
      hwndDlg, lpString, chCount, idListBox)
# hwndDlg : HWND -> Ptr{Cvoid}
# lpString : LPSTR out -> Ptr{UInt8}
# chCount : INT -> Int32
# idListBox : INT -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int32_t DlgDirSelectExA(
    void* hwndDlg,
    char* lpString,
    int32_t chCount,
    int32_t idListBox);
]]
local user32 = ffi.load("user32")
-- user32.DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
-- hwndDlg : HWND
-- lpString : LPSTR out
-- chCount : INT
-- idListBox : INT
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('USER32.dll');
const DlgDirSelectExA = lib.func('__stdcall', 'DlgDirSelectExA', 'int32_t', ['void *', 'char *', 'int32_t', 'int32_t']);
// DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
// hwndDlg : HWND -> 'void *'
// lpString : LPSTR out -> 'char *'
// chCount : INT -> 'int32_t'
// idListBox : INT -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("USER32.dll", {
  DlgDirSelectExA: { parameters: ["pointer", "buffer", "i32", "i32"], result: "i32" },
});
// lib.symbols.DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox)
// hwndDlg : HWND -> "pointer"
// lpString : LPSTR out -> "buffer"
// chCount : INT -> "i32"
// idListBox : INT -> "i32"
// 文字列は "buffer"。ANSI(-A) は new TextEncoder() で UTF-8/ANSI バイト列(末尾に \x00)を渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t DlgDirSelectExA(
    void* hwndDlg,
    char* lpString,
    int32_t chCount,
    int32_t idListBox);
C, "USER32.dll");
// $ffi->DlgDirSelectExA(hwndDlg, lpString, chCount, idListBox);
// hwndDlg : HWND
// lpString : LPSTR out
// chCount : INT
// idListBox : INT
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface User32 extends StdCallLibrary {
    User32 INSTANCE = Native.load("user32", User32.class, W32APIOptions.ASCII_OPTIONS);
    boolean DlgDirSelectExA(
        Pointer hwndDlg,   // HWND
        byte[] lpString,   // LPSTR out
        int chCount,   // INT
        int idListBox   // INT
    );
}
@[Link("user32")]
lib LibUSER32
  fun DlgDirSelectExA = DlgDirSelectExA(
    hwndDlg : Void*,   # HWND
    lpString : UInt8*,   # LPSTR out
    chCount : Int32,   # INT
    idListBox : Int32   # INT
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef DlgDirSelectExANative = Int32 Function(Pointer<Void>, Pointer<Utf8>, Int32, Int32);
typedef DlgDirSelectExADart = int Function(Pointer<Void>, Pointer<Utf8>, int, int);
final DlgDirSelectExA = DynamicLibrary.open('USER32.dll')
    .lookupFunction<DlgDirSelectExANative, DlgDirSelectExADart>('DlgDirSelectExA');
// hwndDlg : HWND -> Pointer<Void>
// lpString : LPSTR out -> Pointer<Utf8>
// chCount : INT -> Int32
// idListBox : INT -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function DlgDirSelectExA(
  hwndDlg: THandle;   // HWND
  lpString: PAnsiChar;   // LPSTR out
  chCount: Integer;   // INT
  idListBox: Integer   // INT
): BOOL; stdcall;
  external 'USER32.dll' name 'DlgDirSelectExA';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "DlgDirSelectExA"
  c_DlgDirSelectExA :: Ptr () -> CString -> Int32 -> Int32 -> IO CInt
-- hwndDlg : HWND -> Ptr ()
-- lpString : LPSTR out -> CString
-- chCount : INT -> Int32
-- idListBox : INT -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let dlgdirselectexa =
  foreign "DlgDirSelectExA"
    ((ptr void) @-> string @-> int32_t @-> int32_t @-> returning int32_t)
(* hwndDlg : HWND -> (ptr void) *)
(* lpString : LPSTR out -> string *)
(* chCount : INT -> int32_t *)
(* idListBox : INT -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library user32 (t "USER32.dll"))
(cffi:use-foreign-library user32)

(cffi:defcfun ("DlgDirSelectExA" dlg-dir-select-ex-a :convention :stdcall) :int32
  (hwnd-dlg :pointer)   ; HWND
  (lp-string :pointer)   ; LPSTR out
  (ch-count :int32)   ; INT
  (id-list-box :int32))   ; INT
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $DlgDirSelectExA = Win32::API::More->new('USER32',
    'BOOL DlgDirSelectExA(HANDLE hwndDlg, LPSTR lpString, int chCount, int idListBox)');
# my $ret = $DlgDirSelectExA->Call($hwndDlg, $lpString, $chCount, $idListBox);
# hwndDlg : HWND -> HANDLE
# lpString : LPSTR out -> LPSTR
# chCount : INT -> int
# idListBox : INT -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

文字セット違い
公式の関連項目