Guest User

Untitled

a guest
Feb 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. void copyFolder(LPCWSTR f, LPCWSTR w)
  2. {
  3. HANDLE hFind, hFindInside;
  4. WIN32_FIND_DATA FindFileData;
  5. hFind = FindFirstFile(f, &FindFileData);
  6. if(FindFileData.dwFileAttributes == FILE_ATTRIBUTE_DIRECTORY){
  7. CreateDirectory
Add Comment
Please, Sign In to add comment