使用 C# 将文件从一台 PC 传输到另一台 PC?
我正在使用 C#。我想将服务器 PC 上的文件传输到我的 PC。两台PC通过网络连接。 我已经在路径中给出了该电脑的 IP 地址,但它没有将文件复制到我的文件夹中。我正在使用以下代码,但它不起作用:
File.Copy(Path.GetFileName(sourceFile), Path.GetDirectoryName(targetpath));
在 sourceFile
中,我给出了服务器 PC 的 IP 地址 + 文件夹路径,在 targetpath 中,我给出了我的 PC 的文件夹路径我想复制其中的文件。
I'm using C#. I want to get the files that are on the server PC to my PC. Both PCs are connected through network.
I have given IP address of that PC in the path, but it's not copying the files to my folder. I'm using the following code, but it's not working:
File.Copy(Path.GetFileName(sourceFile), Path.GetDirectoryName(targetpath));
In sourceFile
I have given IP address + folder path of the server PC and in the targetpath i have given the path of the folder of my PC to which I want to copy the files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么使用Path.GetFileName?
该函数仅获取文件名,而不获取完整路径。
File.Copy(string sourceFileName, string destFileName) 的签名意味着您必须使用两个文件的完整路径。
这段代码效果很好:
Wy do you use Path.GetFileName?
This function get only file name, not full path.
The signature of File.Copy(string sourceFileName, string destFileName) means, that you must use full path to both files.
This code works good: