如何从savefiledialog中获取完整路径并在“startInfo.Arguments"”中使用

本文关键字:Arguments startInfo quot savefiledialog 获取 路径 | 更新日期: 2023-09-27 18:17:07

在我的情况下,SaveFileDialog不会写入任何文件,但我想使用指定命令行应用程序的路径,该应用程序将在与sf对话框中的"saved"相同的位置创建日志文件。

SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "*.txt";
string sfdname = saveFileDialog1.FileName;
if (sfd.ShowDialog() == DialogResult.OK)
{
  Path.GetFileName(sfd.FileName);
}
startInfo.Arguments = "--log=" + Path.GetFileName(sfd.FileName);

如何从savefiledialog中获取完整路径并在“startInfo.Arguments"”中使用

可以使用

Path.GetFullPath(sfd.FileName);
不是

Path.GetFileName(sfd.FileName);

完整版…

SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "*.txt";
string sfdname = saveFileDialog1.FileName;
if (sfd.ShowDialog() == DialogResult.OK)
{
  Path.GetFullPath(sfd.FileName);
}
startInfo.Arguments = "--log=" + Path.GetFullPath(sfd.FileName);

直接删除Path.GetFileName:

startInfo.Arguments = "--log='"" + sfd.FileName + "'"";

根据你所描述的内容,我认为你使用了错误的对话框形式。

尝试使用FolderBrowserDialog类:

string folderPath = string.Empty;
using (FolderBrowserDialog fdb = new FolderBrowserDialog()) {
  if (fdb.ShowDialog() == DialogResult.OK ){
    folderPath = fdb.SelectedPath;
  }
}
if (folderPath != string.Empty) {
  startInfo.Arguments = "--log=" + folderPath;
}
OpenFileDialog openFileDialog1 = new OpenFileDialog();
                openFileDialog1.Filter = "Image files | *.jpg";
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                 employee_dp.Image = Image.FromFile(openFileDialog1.FileName);
                 string path = System.IO.Path.GetDirectoryName(openFileDialog1.FileName);
                 string onlyFileName = System.IO.Path.GetFileName(openFileDialog1.FileName);
                 filepath = Path.GetFullPath(path).Replace(@"'", @"''");
                 filepath = filepath + "''''" + onlyFileName;
                 MessageBox.Show(filepath);

也许Path.GetFullPath会有帮助?

问题可能是使用错误的FileSaveDialog
Win32.dll中的不提供完整路径,但System.Windows.Forms中的提供。