本文介绍了如何允许用户写他想在C#中保存所选文件的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
rivate string GetFilename(string file)
{
int length = file.Length - (file.LastIndexOf("\\") + 1) - 4;
return file.Substring(file.LastIndexOf("\\") + 1, length);
}
private string GetExtension(string file)
{
return file.Substring(file.LastIndexOf(".") + 1);
}
private void MsbuildGeneratorBtn_Click(object sender, EventArgs e)
{
GenerateMSBuildFile();
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
this.textBox1.Text = folderBrowserDialog1.SelectedPath;
}
}
private void GenerateMSBuildFile()
{
List<ProjectFile> projectList = new List<ProjectFile>();
//WriteBuildFileHeader();
// Add all of the selected files to the template.
foreach (var projectFile in projectFileList)
{
if (projectFile.IsSelected == true)
{
Console.WriteLine(projectFile);
projectList.Add(projectFile);
//WriteItem(projectFile.FullPath, "C:\\");
}
}
推荐答案
这篇关于如何允许用户写他想在C#中保存所选文件的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!