Changeset 1070 for trunk/src/dir_uvmat.m
- Timestamp:
- Jul 11, 2019, 7:02:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/dir_uvmat.m
r1061 r1070 28 28 29 29 function [ListFiles,errormsg] = dir_uvmat(DirName) 30 ListFiles=[]; 30 31 errormsg=''; 32 if ~ischar(DirName) 33 errormsg='the function dir_uvmat needs a character string input'; 34 return 35 end 31 36 if regexp(DirName,'^http://') 32 37 % OpeNDAP case - read catalog.xml file … … 35 40 str=urlread(catalog); 36 41 catch ME 37 ListFiles=[];38 42 errormsg=ME.message; 39 43 return
Note: See TracChangeset
for help on using the changeset viewer.