discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Copying files with special characters


From: Andreas Höschler
Subject: Copying files with special characters
Date: Tue, 9 Sep 2008 19:43:50 +0200

Dear all,

I would like to programmatically copy files with

system([[NSString stringWithFormat:@"cp -r %@ %@", sourcePath, destPath] cString]);

or alternatively using NSFileManager. This works as long as sourcePath does not contain special characters like ä,ö,ü,...

In a terminal shell I can successfully copy such a file by typing

        cp "Germ

and then using TAB to automatically complete the path to

        cp "German Fa\314\210hrhaus.jpeg" /home/ahoesch/A00

The question for me now is where this magic \314\210 stuff comes from and how I can do the conversion in my GNUstep app programmatically before building the copy command.

system([[NSString stringWithFormat:@"cp -r %@ %@", [sourcePath magicMethod], destPath] cString]);

Hints are greatly appreciated!

Thanks,

  Andreas





reply via email to

[Prev in Thread] Current Thread [Next in Thread]