我使用下面的代码将pdf文件保存到网络位置。如果路径不存在,它是否可能创建文件夹?下面的代码只是在需要创建用户名的文件夹时将用户名添加到文件名中?
Dim Doc1 As New Document
Dim path As String = "\\Servername\PDFs\" + Session("Username")
Dim myUniqueFileName = String.Format("{0}.pdf", random)
Dim combinedData As String = path & myUniqueFileName
PdfWriter.GetInstance(Doc1, New FileStream(path & myUniqueFileName, FileMode.Create))
Doc1.Open()
Dim test As String
test = Session("PDF")
Doc1.Add(New Paragraph(test))
Doc1.Close()
答案 0 :(得分:2)
绝对是这样的:
If(Not System.IO.Directory.Exists(path)) Then
System.IO.Directory.CreateDirectory(path)
End If