Sub test2() ''カレントフォルダの後ろに新しいフォルダ名を追加します Dim FSO As Object, buf As String Set FSO = CreateObject("Scripting.FileSystemObject") buf = InputBox("新しいフォルダ名は?") MsgBox FSO.BuildPath(CurDir, buf) Set FSO = Nothing End Sub