FileRealCase

Version 1.0.0.0 (3.1 KB) by Jan
Get real upper/lower case of a file or folder name
297 Downloads
Updated 13 Feb 2011

View License

Get correct case of file or folder by repeated calls of DIR

FileName = FileRealCase(FileName)
INPUT:
FileName: String, absolute path of an existing file or folder.
UNC paths are accepted.
OUTPUT:
FileName: String, absolute path with upper/lower case as set in the file system.

Matlab remembers the path as accessed in under Windows:
pathname = upper(fileparts(which('plot.m')));
% >> C:\PROGRAMME\MATLAB651\TOOLBOX\MATLAB\GRAPH2D
cd(pathname)
which('plot.m')
% >> C:\PROGRAMME\MATLAB651\TOOLBOX\MATLAB\GRAPH2D\plot.m
FileRealCase(which('plot.m'))
% >> C:\Programme\Matlab651\toolbox\matlab\graph2d\plot.m

I assume, this function is useful under Windows only, but it considers the Unix naming scheme also.

Matlab's WHICH can find the correct case of files inside the Matlab path also. But this fails for files in the current folder, if the folder was selected using a string with wrong case.

Cite As

Jan (2024). FileRealCase (https://www.mathworks.com/matlabcentral/fileexchange/30395-filerealcase), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2009a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on File Operations in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0