I have a filename (C:folderfoo.txt) and I need to retrieve the folder name (C:folder) in unmanaged C++. In C# I would do something like this:
string folder = new FileInfo("C:folderfoo.txt").DirectoryName;
Is there a function that can be used in unmanaged C++ to extract the path from the filename?
See Question&Answers more detail:os