Re: How to rename a filename in uppercase
Re: How to rename a filename in uppercase
- Subject: Re: How to rename a filename in uppercase
- From: John Stiles <email@hidden>
- Date: Sun, 20 Jan 2008 11:15:45 -0800
These look like filenames, not full paths. You can't supply a partial
path here.
Simone Tessaro wrote:
Hi,
i've a question. I'm trying to write some code that make a filename in
uppercase. i wrote a thing like that:
[defaultManager movePath:@"foo.txt" toPath:@"FOO.txt" handler:nil];
this code doesn't work because cocoa seems to be case-sensitive and
this method is useless for my pourpose. So, i need a method like the
unix mv, in fact if i use the command mv foo.txt FOO.txt , everything
is allright.
Someone have a smart idea to do this? Or i need to use two renaming?
Like this (a very bad idea):
[defaultManager movePath:@"foo.txt" toPath:@"temp.txt" handler:nil];
[defaultManager movePath:@"temp.txt" toPath:@"FOO.txt" handler:nil];
Thanks
Simo
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden