分類:[ネットワーク全般] いつもお世話になっております。 現在、レガシーASPで別サーバーにフォルダを作る処理を Private Function createFold(ByVal FoldCd) Dim objFS Set objFS = CreateObject("Scripting.FileSystemObject") On Error Resume Next 'フォルダを作成する objFS.CreateFolder(foldPath & "\" & FoldCd) If Err.Number <> 0 Then Response.Write "エラー内容:" & CStr(Err.Description) & "<br>" Exit Function End If createFold = True End Function のような形で組んでおります。 しかし、自サーバーにフ

