Mercurial > repos > public > sbplib
view +util/unique_filename.m @ 975:47b48a97c675 feature/getBoundaryOperator
Stupid merge makes this branch dangerous. Merging with other branches will result in unexpected changes. Never merge this branch with anything. Closing branch.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Thu, 03 Jan 2019 13:24:39 +0100 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
% Creates a unique filename on the form base_name.x.suffix where x is some number. function filename = unique_filename(base_name, suffix) filename = strcat(base_name,suffix); i = 1; while exist(filename) filename = strcat(base_name,'.',num2str(i),suffix); i = i+1; end end