所以,說我有C# - 如何從路徑中提取文件名和擴展名?
string path = "C:\\Program Files\\Program\\File.exe";
如何獲得唯一 「的file.exe」?我正在考慮與拆分(見下文),但我所嘗試的不起作用...
這是我的代碼。
List<string> procs = new List<string>(); //Used to check if designated process is already running
foreach (Process prcs in Process.GetProcesses())
procs.Add(prcs.ProcessName); //Add each process to the list
foreach (string l in File.ReadAllLines("MultiStart.txt")) //Get list of processes (full path)
if (!l.StartsWith("//")) //Check if it's commented out
if (!procs.Contains(l.Split('\\')[l.Split('\\').Length - 1])) //Check if process is already running
Process.Start(l);
我可能只是一個noob。 ._。
我的代碼需要Path.GetFileNameWithoutExtension,但是謝謝... – CrimsonDeath
這不是什麼喲你的問題說,雖然。 – Joey