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

67 visualizaciones (últimos 30 días)
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 comentarios
PRAGYA ARORA
PRAGYA ARORA el 9 de En. de 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 el 9 de En. de 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.

Iniciar sesión para comentar.

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 8 de En. de 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 comentarios
Walter Roberson
Walter Roberson el 8 de En. de 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 el 9 de En. de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by