将 pictureBox 图像保存在网络文件夹上

发布于 2024-09-10 13:46:38 字数 177 浏览 2 评论 0原文

我想将图片框图像保存在网络上的共享文件夹中 我用这个代码 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一袭白衣梦中忆 2024-09-17 13:46:38

从字面上看您的问题(“xxxxxx 是共享文件夹的名称”)表明您正在拨打如下电话:

pictureBox1.Image.Save(@"192.168.1.39\myshare",
                         System.Drawing.Imaging.ImageFormat.Jpeg);

您需要指定要创建的文件的名称:

pictureBox1.Image.Save(@"192.168.1.39\myshare\myfile.jpg",
                         System.Drawing.Imaging.ImageFormat.Jpeg);

A literal reading of your question ("xxxxxx is name of share folder") suggests that you're making a call like:

pictureBox1.Image.Save(@"192.168.1.39\myshare",
                         System.Drawing.Imaging.ImageFormat.Jpeg);

You'll need to specify the name of the file you want to create:

pictureBox1.Image.Save(@"192.168.1.39\myshare\myfile.jpg",
                         System.Drawing.Imaging.ImageFormat.Jpeg);
怪我鬧 2024-09-17 13:46:38

据我所知,你不能使用机器的IP来访问其磁盘。
尝试将网络文件夹映射为计算机上的本地驱动器,例如 Z:,然后:

pictureBox1.Image.Save(@"Z:\xxxxxx", System.Drawing.Imaging.ImageFormat.Jpeg);

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:

pictureBox1.Image.Save(@"Z:\xxxxxx", System.Drawing.Imaging.ImageFormat.Jpeg);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文