英文:
Opening a file using its URI format
问题
System.ArgumentException: '不支持 URI 格式。'
如何使用 URI 格式打开文件?
更改上述代码中的文件名不是选项,它由 AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData 提供。
英文:
This code
FileOpen(1, "file:///C:/Users/MyName/Desktop/Test%20%C3%A4%C3%B6%C3%BC%20Test.txt", OpenMode.Input)
throws
System.ArgumentException: 'URI formats are not supported.'
How can I open a file using th URI format?
Changing the filename in the code above is not an option, it is delivered by
AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData
答案1
得分: 3
你可以使用这个:
Dim UriS As Uri("The Uri")
FileOpen(1, UriS.LocalPath, OpenMode.Input)
<details>
<summary>英文:</summary>
You can use this:
Dim UriS As Uri("The Uri")
FileOpen(1,UriS.LocalPath,OpenMode.Input)
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论