Changeset 784 for trunk/src/series.m
- Timestamp:
- Jun 7, 2014, 6:17:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r783 r784 424 424 if ~isequal(ListStruct(ilist).isdir,1)%look for files, not dir 425 425 FileName=ListStruct(ilist).name; 426 FileInfo=get_file_ type(fullfile(DirName,FileName));426 FileInfo=get_file_info(fullfile(DirName,FileName)); 427 427 switch FileInfo.FileType 428 428 case {'image','multimage','civx','civdata','netcdf'} … … 477 477 if ~isequal(hdir(ilist).isdir,1)%look for files, not dir 478 478 FileName=hdir(ilist).name; 479 FileInfo=get_file_ type(fullfile(DirName,FileName));479 FileInfo=get_file_info(fullfile(DirName,FileName)); 480 480 switch FileInfo.FileType 481 481 case {'image','multimage','civx','civdata','netcdf'} … … 2975 2975 set(htitlebox,'String',FullSelectName) 2976 2976 elseif exist(FullSelectName,'file')%visualise the vel field if it exists 2977 FileInfo=get_file_ type(FullSelectName);2977 FileInfo=get_file_info(FullSelectName); 2978 2978 if strcmp(FileInfo.FileType,'txt') 2979 2979 edit(FullSelectName)
Note: See TracChangeset
for help on using the changeset viewer.