Reading file names with case insensitivity
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ryan
el 4 de Mzo. de 2014
Comentada: Image Analyst
el 5 de Mzo. de 2014
Hello I do a decent amount of Matlab programming in both Windows and Linux, and also use Dropbox of my means for sharing files between both operating systems.
When I save an stl file in windows it saves it as example.stl when I open that file again in Linux it makes it example.STL This forces me to either rename every stl file to be lowercase when I am in Linux or to switch my Matlab code to have stl uppercase.
Is there a way I can read in file names and not be case sensitive?
0 comentarios
Respuesta aceptada
Mischa Kim
el 4 de Mzo. de 2014
Editada: Mischa Kim
el 4 de Mzo. de 2014
You could use the lower command to convert the file name string to lower case, before opening the file.
lower('example.STL')
ans =
example.stl
3 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!