C + + Delete folder source code

Source: Internet
Author: User

The function was not found directly for deleting the folder, so I wrote one.

void Cdeletedlg::D elfile (CString path,cstring name) {CString strtemp;if (path. Right (1)! = "\")//determine if the path ends with \ strtemp. Format ("%s\\*.*", path);//Set the wildcard character Elsestrtemp. Format ("%s*.*", path);//Set wildcard character CFileFind FindFile; BOOL bfind = FindFile. FindFile (strtemp);//Find File while (bfind)//loop Find {bfind = FindFile. FindNextFile ();//Find the next file if (!findfile. Isdots () &&!findfile. Isdirectory ()) {CString str = findfile. GetFileName (); int index   = str. Reversefind ('. '); if (str. Right (str. GetLength ()-index) = = name) {DeleteFile (findfile. GetFilePath ());}} else if (findfile. Isdots ()) {continue;} else if (findfile. Isdirectory ())//If it is the directory {delfile (findfile. GetFilePath (), name);//Recursive Lookup}}}


C + + Delete folder source code

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.