close all
clear all

path = 'X:\707976 EPBuoyPrototypeAndTesting\Deployments\Nov2011 Deployment\SurfaceData\R00000\';
%filename = 'D000037_111111_024421';
%SurfaceLogFileDecoderRing

%path = 'X:\707976 EPBuoyPrototypeAndTesting\Deployments\Nov2011 Deployment\SurfaceData\R00000\';
%filename = 'D000039_111111_044422';
%SurfaceLogFileDecoderRing

%path = 'X:\707976 EPBuoyPrototypeAndTesting\Deployments\Nov2011 Deployment\SurfaceData\R00000\';
%filename = 'D000041_111111_064423';
%SurfaceLogFileDecoderRing

%path = 'X:\707976 EPBuoyPrototypeAndTesting\Deployments\Nov2011 Deployment\SurfaceData\R00000\';
%filename = 'D000043_111111_084424';
%SurfaceLogFileDecoderRing

files = dir([path 'D*']);

idx = [];
for i = 1:length(files)
  if(strfind(files(i).name,'.mat'))
    idx = [idx i];
  end
end
idx

for
