Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7564297
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:52:11+00:00 2026-05-30T13:52:11+00:00

I want to get the filename from a vector <wstring> after the search operation

  • 0

I want to get the filename from a vector <wstring> after the search operation i want to copy all the files on the vecAviFiles to another path (for example D:\Test).

 int main()
    {
      int                      iRC         = 0;
      std::vector<std::wstring> vecAviFiles;
      std::wstring fileCopiedDestination = L"D:\\";





  // Search 'c:' for '.avi' files including subdirectories
  iRC = SearchDirectory(vecAviFiles, L"c:\\", L"doc");
  if(iRC)
  {
    std::cout << "Error " << iRC << std::endl;
    return -1;
  }

  // Print results
  for(std::vector<std::wstring>::iterator iterAvi = vecAviFiles.begin(); iterAvi != vecAviFiles.end(); ++iterAvi)
    {

        std::wcout << *iterAvi << std::endl;
        copy_file(*iterAvi,fileCopiedDestination + path::filename(*iterAvi));

    }

    return 0;
}

The problem is in this function (it’s not working) of the boost library copy_file(*iterAvi,fileCopiedDestination + path::filename(*iterAvi)); how can i get the filename to add it to the fileCopiedDestination path.
or how can i do the samething using this function from the WIN API

CopyFileW(Input.c_str(),filename(Input.c_str()) , TRUE);

I think that everything is clear.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:52:12+00:00Added an answer on May 30, 2026 at 1:52 pm

    This should do what you are looking for:

    path destination = fileCopiedDestination / path(*iterAvi).filename();
    copy_file(*iterAvi, destination);
    

    It would probably be better if you stored vecAviFiles as a vector<path>, then the code would be a little shorter:

    path destination = fileCopiedDestination / iterAvi->filename();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to get the MIME type from a filename using C. Is there
Following How to get folder path from file path with CMD I want to
How can I get the filename from a file path in Ruby? For example
I want to get the filename from a filepath. My problem is, that I
I want to get filename without any $_GET variable values from a URL in
I want get from after click $_POST['name'] and where it with name inserting that
I want get all of the Geom objects that are related to a certain
I want to get an overview of files that are updated in TFS (that
I want to get a files these attributes as integer values.
I am looking to get the filename from the end of a filepath string,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.