我正在使用file.copy()
方法将文件从源目录复制到我的vb.net windows应用程序中的目标目录。我收到了以下错误:
访问路径' \ sample \ windows \ path'被拒绝。
Try
If File.Exists(sourcepath) Then
File.SetAttributes(sourcepath, FileAttributes.Normal)
End If
If Not Directory.Exists(dest) Then
Directory.CreateDirectory(dest)
End If
File.Copy(sourcePath, destPath, True)
Catch ex As Exception
System.Windows.MessageBox.Show(ex.Message)
End Try
虽然我能够访问指定的Windows路径。我正在运行具有管理员权限的应用程序,但我收到此错误。这可能是导致此错误的原因。