ファイル選択ダイアログを開く

  InternetExplorer.Application の利用



スクリプトからファイル選択ダイアログを開く方法は、XP を除く OS では正式に用意されていません。ですから、完全なコントロールはできませんが、InternetExplorer.Application を使用するとなんとか使う事ができます
( 但し Cscript.exe からは実行できません )

01.' 管理者として実行を強制する
02.Set obj = Wscript.CreateObject("Shell.Application")
03.if Wscript.Arguments.Count = 0 then
04.    obj.ShellExecute "wscript.exe", WScript.ScriptFullName & " runas", "", "runas", 1
05.    Wscript.Quit
06.end if
07. 
08.' ファイルシステムを操作するオブジェクト
09.Set Fso = WScript.CreateObject( "Scripting.FileSystemObject" )
10.' テンポラリフォルダ
11.TempDir =  Fso.GetSpecialFolder(2)
12.on error resume next
13.' テンポラリフォルダに空の "local.htm" を作成
14.Set objHandle = Fso.CreateTextFile( TempDir & "\local.htm", True, True )
15.if Err.Number <> 0 then
16.    Wscript.Quit
17.end if
18.objHandle.Close
19.on error goto 0
20. 
21.' IE を操作するオブジェクト
22.Set IEDocument = WScript.CreateObject( "InternetExplorer.Application" )
23.' テンポラリフォルダに作成したファイルを開く
24.IEDocument.Navigate( TempDir & "\local.htm" )
25.' 『ファイルを開く』為のコンテンツを作成
26.IEDocument.document.getElementsByTagName("BODY")(0).innerHTML = "<input id=FilePath type=file>"
27.' 『ファイルを開く』為に、ボタンをクリックする
28.IEDocument.document.getElementById("FilePath").click
29.' ファイルを選択していない場合は終了
30.if IEDocument.document.getElementById("FilePath").value = "" then
31.    OpenLocalFileName = ""
32.    IEDocument.Quit
33.    Set IEDocument = Nothing
34.    Wscript.Quit
35.end if
36. 
37.' 選択したファイルのパスを戻す
38.Wscript.Echo IEDocument.document.getElementById("FilePath").value
39. 
40.' IE を終了
41.IEDocument.Quit
42.Set IEDocument = Nothing








  UserAccounts.CommonDialog



Windows XP は以下のようにして実現できます

  
Set objDialog = CreateObject("UserAccounts.CommonDialog")

objDialog.Filter = "全て|*.*|テキスト|*.txt"
objDialog.InitialDir = "C:\"
nRet = objDialog.ShowOpen
 
if nRet = 0 then
	Wscript.Quit
End If

WScript.Echo objDialog.FileName
  

Microsoft へのリンク










  infoboard   管理者用   





フリーフォントWEBサービス
SQLの窓WEBサービス

SQLの窓フリーソフト

素材

一般WEBツールリンク

SQLの窓

フリーソフト

JSライブラリ