删除文件夹路径前的File:///
本文关键字:File 文件夹 路径 删除 | 更新日期: 2023-09-27 18:06:41
我有这样的代码
string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);
这将产生一个字符串,如
"file://C://Foo//bin"
我想要的是
"C://Foo//bin"
如果不从一开始手动删除"file://"
,我如何得到它?
使用子字符串
string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);
this.Text = path.Substring(6, path.Length - 6);
或者使用
this.Text = Application.StartupPath;