Forum Moderators: open
Any steer would be most welcome, I don't get this space when I remove the dynamic folder name, and similar code elsewhere in the site works fine.
Dim Fso, Folder, FolderName, Path
Path = "d:/Activities/GI/" & rs_Categories.Fields.Item("GI_Type_FolderName")
FolderName =rs_GI.Fields.Item("GI_FolderName")
Folder = Path & "/" & FolderName
Response.Write Folder
set Fso = CreateObject("Scripting.FileSystemObject")
' Create the Folder
If (NOT Fso.FolderExists(Folder)) Then
Fso.CreateFolder(Folder)