我正在开发一个vb.net应用程序。
我创建了自己的文件并放入system32文件夹。
现在,我正在尝试使用以下代码读取我放在该文件夹中的同一文件...
Try
Dim FileData As String = ""
Dim line As String = "'"
Dim readFile As System.IO.TextReader = New StreamReader("C:\Windows\System32\winApps.dll")
While True
.
.
.
Catch ex As Exception
Me.Close()
End Try
但是每当我运行上面的代码时,它会给出一个错误 - 在readFile语句中......
无法找到文件' C:\ Windows \ System32 \ winApps.dll'。
但文件确实存在...但如果我更改文件位置代码运行没有错误。
我有行政权。
我缺少什么?