vote up 8 vote down star

I am trying to open a file in c++ and the server the progam in running on is based on tux.

string filename = "../dir/input.txt"; works but
string filename = "~jal/dir1/dir/input.txt"; fails

Is there any way to open a file in c++ when the filename provided is in the second format?

flag

73% accept rate

3 Answers

vote up 12 vote down check

The ~jal expansion is performed by the shell (bash/csh/whatever), not by the system itself, so your program is trying to look into the folder named ~jal/, not /home/jal/.

I'm not a C coder, but getpwent() may be what you need.

link|flag
+1 for remembering the basics... duh.... – ojblass May 31 at 17:46
I meant duh by me not the poster of the question. – ojblass May 31 at 17:48
Magnus, $HOME contains your homedir - and ~jal expands to the homedir of user 'jal'. – grawity May 31 at 17:52
2Magnus: I'm not sure about $HOME, if program will run via 'su', for example – Alex Ott May 31 at 18:21
vote up 9 vote down

You could scan the string, replacing ~user by the appropriate directory.

The POSIX function wordexp does that, and a few other things

  • variable substitution, like you can use $HOME
  • optional command substitution, like $(echo foo) (can be disabled)
  • arithmetic expansion, like $((3+4))
  • word splitting, like splitting ~/a ~/b into two words
  • wildcard expansion, like *.cpp
  • and quoting, like "~/a ~/b" remains that
link|flag
1  
+1, I didn't know about wordexp. – zvrba May 31 at 18:51
vote up 3 vote down

Here is a ready piece of code, that performs this task:

How do I expand `~' in a filename like the shell does?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.