MKDIR

French support forum

Moderators: white, nsp, Stefan2

Post Reply
User avatar
tara
Junior Member
Junior Member
Posts: 7
Joined: 2006-01-23, 12:30 UTC
Location: France-Dijon

MKDIR

Post by *tara »

Bonjour à tous!
Je désire créer une arborescence de répertoires >500.
Je désire m'appuyer sur une liste de nom provenant d'une table Exel
TCMD peut t il m'aider à créer cela de manière automatique comme du temps du MSDOS avec un point .bat et MKDIR.
Ce temps là est révolu, TCMD que j'utilise depuis c'est premières version est devenu pour moi incontournable pour naviguer gérer etc. Sans lui je n'arrive pas à utiliser Exporer de WinGrosBillGate.
C'est une bouteil à la mer! Un géni l'a trouvera t il?[/list]
User avatar
Sheepdog
Power Member
Power Member
Posts: 5150
Joined: 2003-12-18, 21:44 UTC
Location: Berlin, Germany
Contact:

Post by *Sheepdog »

Sorry for replying in english -I don't speak french at all.

You want to create a bunch of folder using a list in a excel sheet?

If so please

1. Open a new (text) file in a editor
2. mark the names in the excel sheet
3. copy the names with Ctrl+c
4. paste the names to the text file
5. add at each line befor the folder name "md "

dir1
dir2
dir3

is going to be

md dir1
md dir2
md dir3
6. save the text file in the folder you want to create those folders in with extension *.cmd (e.g Folder.cmd)
7. Doubleclick on the file or hiot enter in Total Commander

Hope that helps

sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
User avatar
tara
Junior Member
Junior Member
Posts: 7
Joined: 2006-01-23, 12:30 UTC
Location: France-Dijon

Post by *tara »

Tank you that good!

Can y make a sud dir in the same time
ex: dir1
dir1.1
dir1.2
dir1.22
dir2
etc.
(((
(@ @)
--ooO-( )-Ooo--
User avatar
Sheepdog
Power Member
Power Member
Posts: 5150
Joined: 2003-12-18, 21:44 UTC
Location: Berlin, Germany
Contact:

Post by *Sheepdog »

Yes,

Code: Select all

md dir1\dir2\dir3 creates dir1 and all it's subdirs.
sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
Post Reply