ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   how to create a new folder through a macro ?? (https://www.excelbanter.com/excel-programming/349246-how-create-new-folder-through-macro.html)

furbiuzzu

how to create a new folder through a macro ??
 
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 !


Leith Ross[_450_]

how to create a new folder through a macro ??
 

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


Tom Ogilvy

how to create a new folder through a macro ??
 
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 !




furbiuzzu

how to create a new folder through a macro ??
 
thanks a lot it works fine !



All times are GMT +1. The time now is 02:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com