1 | % 'find_imadoc': find the ImaDoc xml file associated with a given input file |
---|
2 | % take into account the old conventions |
---|
3 | %----------------------------------------------------------------------- |
---|
4 | % function XmlFileName=find_imadoc(RootPath,SubDir,RootFile,FileExt) |
---|
5 | % |
---|
6 | % OUTPUT: |
---|
7 | % XmlFileName: name of the xml file, ='' if none is found |
---|
8 | % |
---|
9 | % INPUT: |
---|
10 | % RootPath,SubDir,RootFile,FileExt, as given from the input file name by fileparts_uvmat |
---|
11 | function XmlFileName=find_imadoc(RootPath,SubDir,RootFile,FileExt) |
---|
12 | SubDirBase=regexprep(SubDir,'\..*','');%take the root part of SubDir, before the first dot '.' |
---|
13 | XmlFileName=[fullfile(RootPath,SubDirBase) '.xml'];%new convention: xml at the level of the image folder |
---|
14 | if ~exist(XmlFileName,'file') |
---|
15 | XmlFileName=[fullfile(RootPath,SubDirBase,RootFile) '.xml']; % old convention: xml inside the image folder, case of images or new civ files |
---|
16 | if ~exist(XmlFileName,'file') |
---|
17 | XmlFileName=[fullfile(RootPath,SubDirBase,RootFile) '.civ']; % very old convention: .civ file |
---|
18 | if ~exist(XmlFileName,'file') && strcmp(FileExt,'.nc') |
---|
19 | XmlFileName=[fullfile(RootPath,RootFile) '.xml'] ; % old convention: xml inside the image folder, old civ file opened |
---|
20 | if ~exist(XmlFileName,'file') |
---|
21 | XmlFileName=[fullfile(RootPath,RootFile) '.civ']; % very old convention: .civ file |
---|
22 | end |
---|
23 | end |
---|
24 | end |
---|
25 | end |
---|
26 | if ~exist(XmlFileName,'file') |
---|
27 | XmlFileName=''; |
---|
28 | end |
---|