Hi to all,
I have a simple DOS program that copies files from one folder to
another. Here it is:
echo on
cd \esri\esridata\usa\
copy states.sbn c:\temp
copy states.sbx c:\temp
copy states.shp c:\temp
copy states.shx c:\temp
copy states.dbf c:\temp
copy states.prj c:\temp
exit
I would like to modify this so that files that were most recently
updated are the ones that get copied. Is this possible? If so
can someone give me an example?
Cheers,
Michael
------------------
I have a simple DOS program that copies files from one folder to
another. Here it is:
echo on
cd \esri\esridata\usa\
copy states.sbn c:\temp
copy states.sbx c:\temp
copy states.shp c:\temp
copy states.shx c:\temp
copy states.dbf c:\temp
copy states.prj c:\temp
exit
I would like to modify this so that files that were most recently
updated are the ones that get copied. Is this possible? If so
can someone give me an example?
Cheers,
Michael
------------------
Comment