Filter löschen
Filter löschen

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

69 Ansichten (letzte 30 Tage)
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 Kommentare
PRAGYA ARORA
PRAGYA ARORA am 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 am 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 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 Kommentare
Walter Roberson
Walter Roberson am 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 am 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by