Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi guys..
i've a little problem i can't solve. i want a macro to download some files from the web (work already done) and save them inside a new folder to create at the moment. the " root folder" is "downloaded files" and inside folders should be named as: "file" & " actual date" file 31.12.05 file 01.01.06 file 02.01.06 etc etc inside this folders i want to save my downloaded files day by day... thanks and sorry for my english ! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello Furbiuzzu, Dim FolderName As String Dim FolderPath As String FolderPath = "C:\Download Files\" FolderName = "file" & Format(Now(), "dd.mm.yy") MkDir FolderPath & FolderName Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=497179 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Error Resume Next
Mkdir "C:\downloaded files\file " & Format(date,"dd.mm.yy") On Error goto 0 -- Regards, Tom Ogilvy "furbiuzzu" wrote in message oups.com... hi guys.. i've a little problem i can't solve. i want a macro to download some files from the web (work already done) and save them inside a new folder to create at the moment. the " root folder" is "downloaded files" and inside folders should be named as: "file" & " actual date" file 31.12.05 file 01.01.06 file 02.01.06 etc etc inside this folders i want to save my downloaded files day by day... thanks and sorry for my english ! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks a lot it works fine !
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
create a folder using a macro | Excel Programming | |||
Macro to create a new folder according to the month | Excel Discussion (Misc queries) | |||
How do I create a new folder using a macro | Excel Programming | |||
Create folder with a macro | Excel Programming | |||
Macro to create folder | Excel Programming |