Sugest you search the SAS support http://support.sas.com/ website for related documentation and supplemental technical reference information - here is a Google advanced search argument to consider using:
Thanks, your replay. But, we use sas9.2 so we haven't Bip tree in SMC.
I would like create base sas code, that is make dataset, that is contains filenames from WEBDAV folder. I haven't idea how write it.
Simple code could be:
data _null_;
path = "&physical_path";
rc = filename("flref",path);
did = dopen("flref");
end = dnum(did);
put end;
do i = 1 to end;
filename = strip(dread(did,i));
put filename;
end;
rc = close(did);
run;
Although, this code does not drill down to sub-directories.