提示用户打开文件对话框,然后自动将文件保存在不同的位置(.net Winform)

发布于 2024-11-30 08:13:08 字数 1437 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眸中客 2024-12-07 08:13:08

您没有提供足够的详细信息,但我猜您正在尝试做这样的事情:

using (OpenFileDialog ofd = new OpenFileDialog())
{
  if (ofd.ShowDialog() == DialogResult.OK)
  {
    string parseResults = ParseThisFile(ofd.FileName);
    File.WriteAllText(Path.GetDirectoryName(Application.ExecutablePath) +
                                            @"\excelfiles\" +
                                            Path.GetFileName(ofd.FileName),
                      parseResults);
  }
}

注意:没有错误检查。

此外,将这些已解析的文件保存在可执行文件的子目录中可能不是一个好主意。您可能想为此使用Environment.SpecialFolder.etc。

You don't offer enough details, but I'm guessing your are trying to do something like this:

using (OpenFileDialog ofd = new OpenFileDialog())
{
  if (ofd.ShowDialog() == DialogResult.OK)
  {
    string parseResults = ParseThisFile(ofd.FileName);
    File.WriteAllText(Path.GetDirectoryName(Application.ExecutablePath) +
                                            @"\excelfiles\" +
                                            Path.GetFileName(ofd.FileName),
                      parseResults);
  }
}

Note: no error checking.

Also, it probably isn't a good idea to save these parsed files in a subdirectory of the executable. You probably want to use Environment.SpecialFolder.etc for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文