A detailed explanation of the problem of Windows API decomposition path _c language

Source: Internet
Author: User
As you can see in a lot of code, many programmers use the string lookup function in C library to get a filename or extension in a path string. It's a lot of code and trouble.
In fact, in VC, you can use a better way to get. There is no particular description, the code is as follows:
Copy Code code as follows:

LPTSTR szFileName = new Tchar[max_path];

GetModuleFileName (NULL, szFileName, MAX_PATH);

Get information such as letter, filename, extension, etc.
wchar_t Drive[_max_drive];
wchar_t Dir[_max_dir];
wchar_t Fname[_max_fname];
wchar_t Ext[_max_ext];
errno_t err;
Err =:: _wsplitpath_s (szFileName, Drive, _max_drive, dir, _max_dir,
fname, _max_fname, ext, _max_ext);
Get path only
Pathremovefilespec (szFileName);

Note:The _wsplitpath_s function does not change the content in szFileName, but pathremovefilespec changes.
Header File: _wsplitpath_s () is in stdlib.h.
The Pathremovefilespec () function is in shlwapi.h.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.