我们公司有一个共享点文档服务器,UNC看起来像这样:\\ theserver.ourdomain.com \ rootdirectory
目前,此驱动器已映射到本地计算机上的Z:\。要访问Z:\,您必须指定(每次登录时)凭据(在我们的例子中是我们登录的用户名和密码),以访问 rootdirectory 中的文件夹和文件。 / p>
我处于需要将文件复制到共享点服务器的情况。我希望能够在不使用映射的网络驱动器的情况下将文件复制到服务器上(不必在路径中指定Z:\)。如何提供凭据以便我可以执行基本IO功能,如GetDirectories(),GetFiles(),IO.File.Copy()等...?
我已经研究了以下事项,但未能成功地使用它们:
CredUIPromptForCredentials / CredUIPromptForWindowsCredentials API调用,但我发现这些仅适用于花哨的Windows用户界面,您可以在其中输入您的凭据,但实际上什么都不做。
<DllImport("advapi32.dll", SetLastError:=True)> _
Private Shared Function LogonUser(lpszUsername As String, lpszDomain As String, _
lpszPassword As String, dwLogonType As Integer, _
dwLogonProvider As Integer, ByRef phToken As IntPtr) As Boolean
End Function
<DllImport("kernel32.dll", CharSet:=CharSet.Auto)> _
Private Shared Function CloseHandle(handle As IntPtr) As Boolean
End Function
'// logon types
Public Const LOGON32_LOGON_NETWORK As Integer = 3
Public Const LOGON32_LOGON_NEW_CREDENTIALS As Integer = 9
'// logon providers
Public Const LOGON32_PROVIDER_WINNT50 As Integer = 3
Public Const LOGON32_PROVIDER_WINNT40 As Integer = 2
Public Const LOGON32_PROVIDER_WINNT35 As Integer = 1
Public Const LOGON32_PROVIDER_DEFAULT As Integer = 0
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim token = IntPtr.Zero
Dim success = LogonUser("username", "domain", "password", _
LOGON32_LOGON_NEW_CREDENTIALS, _
LOGON32_PROVIDER_DEFAULT, token)
If Not success Then
Me.RaiseLastWin32Error()
End If
Using identity = New WindowsIdentity(token)
Using impersonated = identity.Impersonate()
Try
Dim info = New DirectoryInfo("\\theserver.ourdomain.com\rootdirectory\")
Dim files = info.GetDirectories()
Catch ex As Exception
Finally
impersonated.Undo()
End Try
If Not CloseHandle(token) Then
Me.RaiseLastWin32Error()
End If
End Using
End Using
End Sub
Private Sub RaiseLastWin32Error()
Dim hr = Marshal.GetLastWin32Error()
Dim ex = Marshal.GetExceptionForHR(hr)
If ex IsNot Nothing Then
Throw ex
End If
Throw New SystemException(String.Format("Call resulted in error code {0}", hr))
End Sub
答案 0 :(得分:0)
这不是您问题的直接答案,因为它是一种截然不同的方法。如果它对您的情况不起作用不好意思打扰,但您是否考虑过使用SharePoint Web服务加载文件并检索信息?
我建议采用这种方法有几个原因:
以下是一些经过清理和简化的代码,以防万一:
// location takes the form http://server.name.com/site/library/folder/document.ext
public string UploadDocument(string location, byte[] fileContents)
{
var result = String.empty;
var destination = new string[1];
destination[0] = location;
var fileName = Path.GetFileName(location);
var fieldInfo = new FieldInformation[0];
CopyResult[] copyResults;
_copyService.Url = "http://server.name.com/_vti_bin/Copy.asmx";
_copyService.Credentials = CredentialCache.DefaultCredentials;
_copyService.CopyIntoItems(fileName, destination, fieldInfo, fileContents, out copyResults);
var errorCode = copyResults[0].ErrorCode;
if (errorCode != CopyErrorCode.Success)
{
if (errorCode == CopyErrorCode.DestinationCheckedOut)
result = "File is currently checked out. Please try again later.";
else
result = "Error uploading content.";
}
return result;
}
_copyService是我们注入的依赖项,其中运行时实现是由Copy.asmx SharePoint Web服务中的Visual Studio工具生成的代理。
您还可以使用Lists.asmx Web服务获取文件夹内容和文档元数据。这种方法的最大缺点是查询信息需要一些CAML知识,处理结果并不容易。但是这些服务在MSDN上得到了合理的记录,并且这些操作都在我们的应用程序中运行。
答案 1 :(得分:0)
嗯,我能够借助WNetAddConnection2 API解决这个问题。此API也用于映射网络驱动器,但是您可以在不指定驱动器号的情况下调用此方法,以便只添加连接。
比如说你有驱动器X:映射到\\ server \ share 让我们说它需要用户名&amp;用于访问服务器上文件的密码。当您重新启动Windows 7时,您可能会丢失该连接(您将收到一条通知,告知Windows无法重新连接某些网络驱动器)。如果您的应用程序需要访问该服务器的文件,并且您尝试在不提供凭据的情况下访问它,则会获得访问被拒绝的异常。如果您成功调用WNetAddConnection2,它不仅可以修复未映射的网络驱动器,还可以通过System.IO命名空间访问文件/目录。
我们使用Sharepoint,这对我有用。感谢其他人回复。