Ignore:
Timestamp:
Nov 21, 2010, 10:06:11 PM (13 years ago)
Author:
sommeria
Message:

series: give writting access to the group for all subdirectories produced
uvmat.fig: change of vect and scalar frames (to be consistent with view_field)
uvmat: various cleaning
plot_field: various cleaning to improve axes definition and avoid blinking
geometry_calib: improved dispay of point coordiantes, improved link with dataview for REPLICATE.
struct2nc: repair bug , file was not closed.
cell2tab: cleaning
dataview: improve the browser
civ: solve pb of image naming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/merge_proj.m

    r127 r128  
    234234    succeed=mkdir(subdir);
    235235    if succeed
    236     cd(dircur);
     236        [xx,msg2] = fileattrib(res_subdir,'+w','g'); %yield writing access (+w) to user group (g)
     237        if ~strcmp(msg2,'')
     238            msgbox_uvmat('ERROR',['pb of permission for ' res_subdir ': ' msg2])%error message for directory creation
     239            cd(dircur)
     240            return
     241        end
     242        cd(dircur);
    237243    else
    238     msgbox_uvmat('ERROR',['Cannot create directory ' fulldir])
    239     return
    240     end       
     244        msgbox_uvmat('ERROR',['Cannot create directory ' fulldir])
     245        return
     246    end
    241247end
    242248filebasesub=fullfile(res_subdir,Series.RootFile{1});
Note: See TracChangeset for help on using the changeset viewer.