I am looking for a tool / code in C#, or C++ / C that can extract file paths from a file e.g.
File.txt:
Lorem Impusum
C:\Windows\System32\test.exe
C:\Users\Limited\Downloads.txt
testing 123
So it would output File.txt as follows:
C:\Windows\System32\test.exe
C:\Users\Limited\Downloads.txt
This should return what you’re after, assuming you’ve loaded the contents of your file into a
List<string>orstring[]Also, this is C#.