如果文件位于 Internet 中,如何将文件传输到函数
我有一个文件位于路径 http://www.site.ru/config.ini
还有其他人的代码获取了应该位于计算机(本地)上的文件。
你当然可以保存文件,然后通过,但我无法在本地保存文件(这不会是谁无法使用它)。
功能:
[DllImport ("kernel32")]
private static extern int GetPrivateProfileString (string section, string key, string def, StringBuilder retVal, int size, string filePath);
我要做什么?
I have a file that lies on the path http://www.site.ru/config.ini
And there is someone else's code that takes a file that should be on the computer (locally).
You can of course save the file, and then pass, but I can not save the file locally (which would not be who could not work with it).
Function:
[DllImport ("kernel32")]
private static extern int GetPrivateProfileString (string section, string key, string def, StringBuilder retVal, int size, string filePath);
What shall I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许通过 http 将文件下载到流可能会有所帮助。
我在 csharpfriends.com 上找到了如何执行此操作的示例:
maybe downloading the file to a stream via http might be helpful.
I found an example on how to do this on csharpfriends.com: