Guest User

Untitled

a guest
Jun 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1.  
  2. char *split_tok;
  3. split_tok = strtok (folders,";");
  4.  
  5. while (split_tok != NULL && download_status == true) {
  6. //char temp_create[200] = "sd:";
  7. //strcat(temp_create, split_tok);
  8. //if (create_dir(temp_create) != 1) {
  9. if (create_dir(split_tok) != 1) {
  10. download_status = false;
  11. error_number = 2;
  12. }
  13. split_tok = strtok (NULL, ";");
  14. }
Add Comment
Please, Sign In to add comment