This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: mkdir -p //d/lala/lolo does not work ?


On Fri, Jun 01, 2001 at 03:39:50PM +0200, Olivier Fambon wrote:
> Earnie Boyd [Fri, 01 Jun 2001 09:20:58 -0400] wrote:
> >
> > Corinna Vinschen wrote:
> > > 
> > > On Thu, May 31, 2001 at 05:36:57PM +0200, Olivier Fambon wrote:
> > > > Hi all,
> > > >
> > > > is it just me, or mkdir -p is broken ?
> > > >
> > > > Is the // notation still supported ?
> > > 
> > > It's deprecated, it's recommended not to use it anymore and it will
> > > be dropped once and for all in the next Cygwin version.
> > > 
> > 
> > So instead do
> >   mkdir -p d:/lala/lolo
> > or
> >   mkdir -p /cygdrive/d/lala/lolo
> > 
> 
> Ok. Thanxs.
> 
> Which one is the official [i.e the one that is likely to be supported] ?

There's no official support.

However, use whatever you want. You can even change your /cygdrive
prefix:

	mount --change-cygdrive-prefix /foo
	mkdir -p /foo/d/lala/lolo

or

	mount --change-cygdrive-prefix /
	mkdir -p /d/lala/lolo

or add a specific mount point

	mount D: /bar
	mkdir /bar/lala/lolo

Just dont use //d/lala/lolo except `d' is the name of a SMB server.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]