| Set objFolder = Shell.BrowseForFolder( 0, "フォルダ選択", 11, 0 )
if objFolder is nothing then
WScript.Quit
end if
if not objFolder.Self.IsFileSystem then
WScript.Echo "ファイルシステムではありません"
WScript.Quit
end if
Set objThisFolder = Shell.NameSpace( WshShell.CurrentDirectory )
Call objThisFolder.CopyHere( objFolder.Self, 0 )
| |