使用其URI格式打开文件

huangapple go评论75阅读模式
英文:

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>



huangapple
  • 本文由 发表于 2020年1月6日 17:26:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/59609555.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定