1) How can I MAKE A DIR ??
2) How can my program check if the dir exist ,
If not, create the path

EX:
want to put someting here:
c:\program files\project1\DATA\INI\LIST\
and only this dirrectory exist:
c:\program files\

So, I must do that :
if exist c:\program files\project1\DATA\INI\LIST\ then
'place my code here
else
create c:\program files\project1\DATA\INI\LIST\
end if