Effacer les filtres
Effacer les filtres

I can't copy the files, received unknown error

17 vues (au cours des 30 derniers jours)
mehtap agirsoy
mehtap agirsoy le 25 Juin 2021
Commenté : mehtap agirsoy le 25 Juin 2021
I am trying to copy files to a new folder but I have received unknown error. I used similar code before and copyfile command worked well but this time it doesn't. I couldn't figure it out. Could you please help? Thanks in advance
  2 commentaires
Jan
Jan le 25 Juin 2021
Modifié(e) : Jan le 25 Juin 2021
Please post the complete error message. You do have this important information. Then it is useful to share it with the readers.
There is no fopen() in your code. Why do you close all files brutally by fclose all?
mehtap agirsoy
mehtap agirsoy le 25 Juin 2021
While reading the forums I saw such a suggestion to use fclose all, so tried it. Thanks, I should be careful.
Error using copyfile
Unknown error occurred.
Error in all_tests (line 57)
copyfile (filename ,fold2);

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Juin 2021
% Mean Velocity
filename = sprintf('M1_Normal_T%d_%s_M_Vel.dat',j,word);
allFileInfo = fullfile(start_path,filename);
filename refers to a file that lives under start_path but the filename variable does not include that path information.
copyfile (filename ,fold2);
but there it is being referred to as if it is in the current directory.
  3 commentaires
Walter Roberson
Walter Roberson le 25 Juin 2021
You have
filename = sprintf('M1_Normal_T%d_%s_M_Vel.dat',j,word);
allFileInfo = fullfile(start_path,filename);
so allFileInfo is already the qualified version of the file name. copyfile(allFileInfo, fold2)
mehtap agirsoy
mehtap agirsoy le 25 Juin 2021
It works. Many thanks for the help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by