Reputation: 4202
I am looking at the following question and accepted answer. If you notice there is a line of code like this:
ShellFile shellFile = ShellFile.FromFilePath(pathToYourFile);
This line is giving me an error saying that it is an undefined type, is there a dll I need to include to get this to work? Anyone know which one?
Upvotes: 1
Views: 205
Reputation: 887225
That's part of the Windows API Code Pack, which you'll find on NuGet.
Upvotes: 2