You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by ploxien <pl...@gmail.com> on 2007/06/19 09:29:18 UTC

Directories with only Upper-case are created in lower case!

Hi, I've try this with:

- Eclipse 3.2.2 + Ant 1.6.5
- Ant 1.7.0 (without Eclipse)

I work under Linux (Red Hat) When I create a directory:
<mkdir dir="${build}/WEB-INF"/>
The directory is created in lower-case, but only when all the letters are in
lower case!

Some examples:
<mkdir dir="${build}/WEB"/> --> web (KO)
<mkdir dir="${build}/WeB"/> --> WeB (OK)
<mkdir dir="${build}/web"/> --> web (OK)

Why? What can I do?
Thanks in advance!
Patrick

(sorry for my basic english)
-- 
View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Directories with only Upper-case are created in lower case!

Posted by Peter Reilly <pe...@gmail.com>.
On 6/19/07, ploxien <pl...@gmail.com> wrote:
>
> Ohhhh I founed the probem.
>
> I work on a mapped volume (with TrueCrypt...)
>
> Thanks a lot!
>
No problem,
Peter

> Bye
>
>
>
> Peter Reilly-2 wrote:
> >
> > On 6/19/07, ploxien <pl...@gmail.com> wrote:
> >>
> >>
> >> I see this with a simple "ls" command, or in the file browser. The
> >> directories are not in zip/gz/... files...
> >>
> >> Example (complete)
> >>
> >> <?xml version="1.0"?>
> >> <project name="AntTest" default="test" basedir=".">
> >>         <target name="test">
> >>                 <mkdir dir="ABC"/>
> >>                 <mkdir dir="ABcD"/>
> >>                 <mkdir dir="abcde"/>
> >>         </target>
> >> </project>
> >> --> abc
> >> --> ABcD
> >> --> abcde
> > What are you doing to see these?
> > ls for example.
> > is the filesystem local or remote?
> > (df abc)
> > Peter
> >
> >
> >>
> >> Where is the problem? RED HAT? ?!?
> >>
> >> Thanks a lot!
> >>
> >>
> >>
> >> Peter Reilly-2 wrote:
> >> >
> >> > On 6/19/07, ploxien <pl...@gmail.com> wrote:
> >> >>
> >> >> Hi, I've try this with:
> >> >>
> >> >> - Eclipse 3.2.2 + Ant 1.6.5
> >> >> - Ant 1.7.0 (without Eclipse)
> >> >>
> >> >> I work under Linux (Red Hat) When I create a directory:
> >> >> <mkdir dir="${build}/WEB-INF"/>
> >> >> The directory is created in lower-case, but only when all the letters
> >> are
> >> >> in
> >> >> lower case!
> >> > How did you see this?
> >> > * did you use a complete build file as shown by Jan?
> >> > * was the filesystem vfat?
> >> > * did you check by using zip/unzip (winzip has the "feature" of
> >> >   changing casiness of filenames).
> >> > * do you have a complete build file that shows the problem?
> >> >
> >> >>
> >> >> Some examples:
> >> >> <mkdir dir="${build}/WEB"/> --> web (KO)
> >> > How did you check this?
> >> >> <mkdir dir="${build}/WeB"/> --> WeB (OK)
> >> >> <mkdir dir="${build}/web"/> --> web (OK)
> >> >
> >> >
> >> > Peter
> >> >>
> >> >> Why? What can I do?
> >> >> Thanks in advance!
> >> >> Patrick
> >> >>
> >> >> (sorry for my basic english)
> >> >> --
> >> >> View this message in context:
> >> >>
> >> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
> >> >> Sent from the Ant - Users mailing list archive at Nabble.com.
> >> >>
> >> >>
> >> >> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> >> >> For additional commands, e-mail: user-help@ant.apache.org
> >> >>
> >> >>
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> >> > For additional commands, e-mail: user-help@ant.apache.org
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191308
> >> Sent from the Ant - Users mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> >> For additional commands, e-mail: user-help@ant.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191571
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Directories with only Upper-case are created in lower case!

Posted by ploxien <pl...@gmail.com>.
Ohhhh I founed the probem.

I work on a mapped volume (with TrueCrypt...)

Thanks a lot!

Bye



Peter Reilly-2 wrote:
> 
> On 6/19/07, ploxien <pl...@gmail.com> wrote:
>>
>>
>> I see this with a simple "ls" command, or in the file browser. The
>> directories are not in zip/gz/... files...
>>
>> Example (complete)
>>
>> <?xml version="1.0"?>
>> <project name="AntTest" default="test" basedir=".">
>>         <target name="test">
>>                 <mkdir dir="ABC"/>
>>                 <mkdir dir="ABcD"/>
>>                 <mkdir dir="abcde"/>
>>         </target>
>> </project>
>> --> abc
>> --> ABcD
>> --> abcde
> What are you doing to see these?
> ls for example.
> is the filesystem local or remote?
> (df abc)
> Peter
> 
> 
>>
>> Where is the problem? RED HAT? ?!?
>>
>> Thanks a lot!
>>
>>
>>
>> Peter Reilly-2 wrote:
>> >
>> > On 6/19/07, ploxien <pl...@gmail.com> wrote:
>> >>
>> >> Hi, I've try this with:
>> >>
>> >> - Eclipse 3.2.2 + Ant 1.6.5
>> >> - Ant 1.7.0 (without Eclipse)
>> >>
>> >> I work under Linux (Red Hat) When I create a directory:
>> >> <mkdir dir="${build}/WEB-INF"/>
>> >> The directory is created in lower-case, but only when all the letters
>> are
>> >> in
>> >> lower case!
>> > How did you see this?
>> > * did you use a complete build file as shown by Jan?
>> > * was the filesystem vfat?
>> > * did you check by using zip/unzip (winzip has the "feature" of
>> >   changing casiness of filenames).
>> > * do you have a complete build file that shows the problem?
>> >
>> >>
>> >> Some examples:
>> >> <mkdir dir="${build}/WEB"/> --> web (KO)
>> > How did you check this?
>> >> <mkdir dir="${build}/WeB"/> --> WeB (OK)
>> >> <mkdir dir="${build}/web"/> --> web (OK)
>> >
>> >
>> > Peter
>> >>
>> >> Why? What can I do?
>> >> Thanks in advance!
>> >> Patrick
>> >>
>> >> (sorry for my basic english)
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
>> >> Sent from the Ant - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> >> For additional commands, e-mail: user-help@ant.apache.org
>> >>
>> >>
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> > For additional commands, e-mail: user-help@ant.apache.org
>> >
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191308
>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191571
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Directories with only Upper-case are created in lower case!

Posted by Peter Reilly <pe...@gmail.com>.
On 6/19/07, ploxien <pl...@gmail.com> wrote:
>
>
> I see this with a simple "ls" command, or in the file browser. The
> directories are not in zip/gz/... files...
>
> Example (complete)
>
> <?xml version="1.0"?>
> <project name="AntTest" default="test" basedir=".">
>         <target name="test">
>                 <mkdir dir="ABC"/>
>                 <mkdir dir="ABcD"/>
>                 <mkdir dir="abcde"/>
>         </target>
> </project>
> --> abc
> --> ABcD
> --> abcde
What are you doing to see these?
ls for example.
is the filesystem local or remote?
(df abc)
Peter


>
> Where is the problem? RED HAT? ?!?
>
> Thanks a lot!
>
>
>
> Peter Reilly-2 wrote:
> >
> > On 6/19/07, ploxien <pl...@gmail.com> wrote:
> >>
> >> Hi, I've try this with:
> >>
> >> - Eclipse 3.2.2 + Ant 1.6.5
> >> - Ant 1.7.0 (without Eclipse)
> >>
> >> I work under Linux (Red Hat) When I create a directory:
> >> <mkdir dir="${build}/WEB-INF"/>
> >> The directory is created in lower-case, but only when all the letters are
> >> in
> >> lower case!
> > How did you see this?
> > * did you use a complete build file as shown by Jan?
> > * was the filesystem vfat?
> > * did you check by using zip/unzip (winzip has the "feature" of
> >   changing casiness of filenames).
> > * do you have a complete build file that shows the problem?
> >
> >>
> >> Some examples:
> >> <mkdir dir="${build}/WEB"/> --> web (KO)
> > How did you check this?
> >> <mkdir dir="${build}/WeB"/> --> WeB (OK)
> >> <mkdir dir="${build}/web"/> --> web (OK)
> >
> >
> > Peter
> >>
> >> Why? What can I do?
> >> Thanks in advance!
> >> Patrick
> >>
> >> (sorry for my basic english)
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
> >> Sent from the Ant - Users mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> >> For additional commands, e-mail: user-help@ant.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191308
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Directories with only Upper-case are created in lower case!

Posted by ploxien <pl...@gmail.com>.

I see this with a simple "ls" command, or in the file browser. The
directories are not in zip/gz/... files...

Example (complete)

<?xml version="1.0"?>
<project name="AntTest" default="test" basedir=".">
	<target name="test">
		<mkdir dir="ABC"/>
		<mkdir dir="ABcD"/>
		<mkdir dir="abcde"/>
	</target>
</project>
--> abc
--> ABcD
--> abcde

Where is the problem? RED HAT? ?!?

Thanks a lot!



Peter Reilly-2 wrote:
> 
> On 6/19/07, ploxien <pl...@gmail.com> wrote:
>>
>> Hi, I've try this with:
>>
>> - Eclipse 3.2.2 + Ant 1.6.5
>> - Ant 1.7.0 (without Eclipse)
>>
>> I work under Linux (Red Hat) When I create a directory:
>> <mkdir dir="${build}/WEB-INF"/>
>> The directory is created in lower-case, but only when all the letters are
>> in
>> lower case!
> How did you see this?
> * did you use a complete build file as shown by Jan?
> * was the filesystem vfat?
> * did you check by using zip/unzip (winzip has the "feature" of
>   changing casiness of filenames).
> * do you have a complete build file that shows the problem?
> 
>>
>> Some examples:
>> <mkdir dir="${build}/WEB"/> --> web (KO)
> How did you check this?
>> <mkdir dir="${build}/WeB"/> --> WeB (OK)
>> <mkdir dir="${build}/web"/> --> web (OK)
> 
> 
> Peter
>>
>> Why? What can I do?
>> Thanks in advance!
>> Patrick
>>
>> (sorry for my basic english)
>> --
>> View this message in context:
>> http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11191308
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Directories with only Upper-case are created in lower case!

Posted by Peter Reilly <pe...@gmail.com>.
On 6/19/07, ploxien <pl...@gmail.com> wrote:
>
> Hi, I've try this with:
>
> - Eclipse 3.2.2 + Ant 1.6.5
> - Ant 1.7.0 (without Eclipse)
>
> I work under Linux (Red Hat) When I create a directory:
> <mkdir dir="${build}/WEB-INF"/>
> The directory is created in lower-case, but only when all the letters are in
> lower case!
How did you see this?
* did you use a complete build file as shown by Jan?
* was the filesystem vfat?
* did you check by using zip/unzip (winzip has the "feature" of
  changing casiness of filenames).
* do you have a complete build file that shows the problem?

>
> Some examples:
> <mkdir dir="${build}/WEB"/> --> web (KO)
How did you check this?
> <mkdir dir="${build}/WeB"/> --> WeB (OK)
> <mkdir dir="${build}/web"/> --> web (OK)


Peter
>
> Why? What can I do?
> Thanks in advance!
> Patrick
>
> (sorry for my basic english)
> --
> View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11189826
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: AW: Directories with only Upper-case are created in lower case!

Posted by ploxien <pl...@gmail.com>.
Hi,
Thanks.
What distribution are yiou using? RED HAT?
I've tried the 1.7.0 version!
Bye...
Patrick


Jan.Materne wrote:
> 
> I tried to get that on a SLES10 box.
> <project>
>   <mkdir dir="lower\web"/>
>   <mkdir dir="upper\WEB"/>
>   <mkdir dir="mixed\wEb"/>
> </project> 
> 
> But I got all the directories like expected.
> (Ant 1.7.0)
> 
> Jan
> 
>>-----Ursprüngliche Nachricht-----
>>Von: ploxien [mailto:ploxiens01@gmail.com] 
>>Gesendet: Dienstag, 19. Juni 2007 09:29
>>An: user@ant.apache.org
>>Betreff: Directories with only Upper-case are created in lower case!
>>
>>
>>Hi, I've try this with:
>>
>>- Eclipse 3.2.2 + Ant 1.6.5
>>- Ant 1.7.0 (without Eclipse)
>>
>>I work under Linux (Red Hat) When I create a directory:
>><mkdir dir="${build}/WEB-INF"/>
>>The directory is created in lower-case, but only when all the 
>>letters are in
>>lower case!
>>
>>Some examples:
>><mkdir dir="${build}/WEB"/> --> web (KO)
>><mkdir dir="${build}/WeB"/> --> WeB (OK)
>><mkdir dir="${build}/web"/> --> web (OK)
>>
>>Why? What can I do?
>>Thanks in advance!
>>Patrick
>>
>>(sorry for my basic english)
>>-- 
>>View this message in context: 
>>http://www.nabble.com/Directories-with-only-Upper-case-are-crea
>>ted-in-lower-case%21-tf3944728.html#a11189826
>>Sent from the Ant - Users mailing list archive at Nabble.com.
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>For additional commands, e-mail: user-help@ant.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Directories-with-only-Upper-case-are-created-in-lower-case%21-tf3944728.html#a11190889
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org