View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Backing up folder

Hi Dan

Try this
http://www.rondebruin.nl/folder.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"dan" wrote in message news:MRPvg.2837$Pi.1728@trndny08...
Thank you, Muhammed
I meant to backup folder "C:\Documents and Settings\dan\Price" with
all its contents as PriceMMDDYY in "C:\MyBackup\".
Any idea?

"Muhammed Rafeek M" wrote in
message ...
You can use this macro:

Dim str As String
str = "C:\Mybackup\Price" & Format(Date, "mmddyy")
MkDir (str)


"dan" wrote:

I want to backup folder "C:\Documents and Settings\dan\Price" as
"C:\MyBackup\PriceMMDDYY"
Could you help me script a Macro to do this.
Thanks