open file in notepad via gui
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hellow, i search a method to open a file in notepad or another simple txt reader from a gui. So my code generates a ascii file and if i push a button the file have to open notepad. my ascii file is: a = sinogram.sin;
if have found open('a');
but then it opens in matlab itself. Thx
0 comentarios
Respuesta aceptada
Paulo Silva
el 21 de Abr. de 2011
Example:
!notepad C:\Program Files\MyFolder\textFile.txt
Just replace that path with your own.
0 comentarios
Más respuestas (2)
Fiboehh
el 21 de Abr. de 2011
3 comentarios
Paulo Silva
el 21 de Abr. de 2011
The way you call uigetfile is wrong
[FileName,PathName] = uigetfile('*.sin','Select the .sin-file')
eval(['!notepad ' PathName FileName])
Paulo Silva
el 21 de Abr. de 2011
And another way for those who hate the eval function
system(['notepad ' PathName FileName])
Fiboehh
el 21 de Abr. de 2011
1 comentario
Paulo Silva
el 21 de Abr. de 2011
[FileName,PathName] = uigetfile('*.sin','Select the .sin-file')
if ischar(FileName)
%disp('file selected')
eval(['!notepad ' PathName FileName])
else
%disp('user canceled')
end
Ver también
Categorías
Más información sobre Environment and Settings 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!