where you saved the file upload? using GUI
Show older comments
I'm making a guide in Matlab and I have some problems for Load Data!
I want know where they are saved? because i need this file in a specific folder.
[FileName Path]=uigetfile('*.dat','Batimetría');
if FileName == 0
return
end
I would appreciate your prompt response.
Regards
Accepted Answer
More Answers (1)
Ashish Gudla
on 6 Aug 2014
Edited: Ashish Gudla
on 6 Aug 2014
0 votes
"uigetfile" function returns only the filename and path of the file. It does not upload the file. You can read more about this in the doc page
Once you have the file name and the path (location of the file) you can then use the appropriate file read/write functions depending on the type of file.
1 Comment
Juan Espinoza
on 6 Aug 2014
Categories
Find more on Search Path in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!