将 pictureBox 图像保存在网络文件夹上
我想将图片框图像保存在网络上的共享文件夹中 我用这个代码 pictureBox1.Image.Save(@"192.168.1.39\xxxxxx", System.Drawing.Imaging.ImageFormat.Jpeg);
但它会引发错误 请帮我!
xxxxxx 是 shahre 文件夹的名称
i want to save picturebox image in a share folder on network
i use this code
pictureBox1.Image.Save(@"192.168.1.39\xxxxxx", System.Drawing.Imaging.ImageFormat.Jpeg);
but it rauses error
please help me!
xxxxxx is name of shahre folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从字面上看您的问题(“xxxxxx 是共享文件夹的名称”)表明您正在拨打如下电话:
您需要指定要创建的文件的名称:
A literal reading of your question ("xxxxxx is name of share folder") suggests that you're making a call like:
You'll need to specify the name of the file you want to create:
据我所知,你不能使用机器的IP来访问其磁盘。
尝试将网络文件夹映射为计算机上的本地驱动器,例如 Z:,然后:
As far as I know, you can't use the IP of machine in order to access its disk.
Try mapping the network folder as local drive on your machine, e.g. Z: and then: