Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
113 views
Welcome To Ask or Share your Answers For Others

1 Answer

Using Boost.Filesystem:

boost::filesystem::path p("C:\folder\foo.txt");
boost::filesystem::path dir = p.parent_path();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...