solaris765
40 discussion posts
I'm writing a function that requires a programs file location but the program would be a wild card.
Is there a way to get that programs file location returned somehow?
Is the program running at the point where you're looking for its process path? If so, you should be able to use string[] files = BFS.Application.GetAllRunningApplicationFiles(); and then loop through that array to find the one you're looking for.
solaris765
40 discussion posts
alright. I was hoping for something simpler. But I guess a built in function would be essentially the same thing anyways.
solaris765
40 discussion posts
Thanks. It's more of a readability thing for me. I like people to know what I'm trying to do in the fewest lines possible.