このコードに何か問題があるかどうかお聞きしたいのですが? フォルダが存在しない場合、フォルダを作成しないためです。
Dim folderPath As String = Server.MapPath("~/Reading/")
If Not System.IO.Directory.Exists(folderPath) Then
System.IO.Directory.CreateDirectory(folderPath)
End If
このコードに何か問題があるかどうかお聞きしたいのですが? フォルダが存在しない場合、フォルダを作成しないためです。
Dim folderPath As String = Server.MapPath("~/Reading/")
If Not System.IO.Directory.Exists(folderPath) Then
System.IO.Directory.CreateDirectory(folderPath)
End If