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