Error using fopen Unable to find file. Ensure file exists and path is valid.

67 vues (au cours des 30 derniers jours)
PRAGYA ARORA
PRAGYA ARORA le 7 Jan 2023
Commenté : Rik le 9 Jan 2023
Error using fopen
Unable to find file. Ensure file exists and path is valid.
The file path is valid and the file is there still unable to read it.
  4 commentaires
PRAGYA ARORA
PRAGYA ARORA le 9 Jan 2023
I am facing the same issue with readmatrix/ writematrxi and even while saving the image, these commands used to work properly but somehow creating this error now. Can you suugest something? Thankyou so much.
Rik
Rik le 9 Jan 2023
You should make it a habit to specify the permission when using fopen.
As far as the directory is concerned: you don't specify it, so the current active directory is used. Was that your intention?
When creating files it doesn't matter if the named file exists, since it will be either created or overwritten.

Connectez-vous pour commenter.

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 8 Jan 2023
One of the possible scenarious for such an error might be that your data file is residing in OneDrive (Cloud). Solution is
using addpath(' ...') to add your data file directory accessible by your matlab before recalling your data file.
  4 commentaires
Walter Roberson
Walter Roberson le 8 Jan 2023
But most of the time the problem turns out to be that you are trying to open a different file than you think you are opening. Spelling mistakes, wrong directory specified, relative directory was used but you are cd'd to somewhere else. Or from time to time you encounter problems with the file system having been created using a different character set that cannot handle one of the characters you are trying to use.
PRAGYA ARORA
PRAGYA ARORA le 9 Jan 2023
Hi Walter,
Thankyou for your reply, I am using the below code: I am calling the data from my external hard disk.
clc;
close all;
clear all;
p1 = fopen('Mylocation.txt');
a1 = fscanf(p1,'%f\t%f\t%f\n',[3,inf]);
fclose(p1);
final1=a1';
I have checked the directory name, spelling and location sevral times. Still it doesnt open at times, the same code was working for other files in the hard-disk.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Startup and Shutdown 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