C#通过文件路径截取对应的文件夹路径

 
 try
{
OpenFileDialog openFileDialog = new OpenFileDialog();
string str = comboBox_hexFilePath.Text;
string file = str.Substring(, str.LastIndexOf("\\") + );//去掉了路径
openFileDialog.InitialDirectory = file; openFileDialog.Filter = "Hex文件|*.hex";
openFileDialog.RestoreDirectory = true;
openFileDialog.FilterIndex = ; comboBox_hexFilePath.Text = openFileDialog.FileName;//文件名 }
}
catch
{
show_info("hex文件选择..");
}
上一篇:大数据学习day19-----spark02-------0 零碎知识点(分区,分区和分区器的区别) 1. RDD的使用(RDD的概念,特点,创建rdd的方式以及常见rdd的算子) 2.Spark中的一些重要概念


下一篇:在 Spark 中使用 IPython Notebook