我正试图在Vs 2015上使用2 Dll refrence。
导入System.IO 导入Microsoft.SharePoint
' Create a Text File
Private Sub btnCreate_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim fs As FileStream = Nothing
If (Not File.Exists(fileLoc)) Then
fs = File.Create(fileLoc)
Using fs
End Using
End If
End Sub
它在这部分上给我一个错误说 '文件'是不明确的,从名称空间或类型System.IO,Microsoft.SharePoint.Client'中导入。
If (Not File.Exists(fileLoc)) Then
fs = File.Create(fileLoc)
Using fs
End Using
End If
我如何创建文件?