How do I find the home directory of an arbitrary user from within Grails? On Linux it's often /home/user. However, on some OS's, like OpenSolaris for example, the path is /export/home/user.
|
|
For UNIX-Like systems you might want to execute " |
|||||||||||
|
|
Normally you use the statement
to get the home directory of the user on any platform. See the method documentation for getProperty to see what else you can get. There may be access problems you might want to avoid by using this workaround (Using a security policy file) |
|||||||
|
|
For an arbitrary user, as the webserver:
|
|||
|
|
|
If you want to find a specific user's home directory, I don't believe you can do it directly. When I've needed to do this before from Java I had to write some JNI native code that wrapped the UNIX |
|||
|
|
|
If your are trying to do this for a user name that you cannot hard code, it can be challenging. Sure Here is a real world case and the solution: You have a script that the user has to run via sudo. The script has to access the user's home folder. You can't reference
The beauty of it is that if the script is not run as sudo then $SUDO_USER is empty, so it's basically the same thing as doing "echo ~". It still works as you' expect. If you use |
|||||
|
|
|
To find the home directory for user FOO on a UNIX-ish system, use |
|||||
|
|
I assume you want to find the home directory of a DIFFERENT user. Obviously getting the "user.home" property would be the easiest way to get the current user home directory. To get an arbitrary user home directory, it takes a bit of finesse with the command line:
Now technically, we should have a thread waiting on the stdout and stderr so the buffers don't fill up and lock up the process, but I'd sure hope the buffer could at least hold a single username. Also, you might want to check the result to see if it starts with ~root (or whatever username you used) just to make sure the user does exist and it evaluated correctly. Hope that helps. Vote for this answer if it does as I'm new to contributing to SO and could use the points. |
|||
|
|
|
Can you parse /etc/passwd? e.g.:
|
|||
|
|
Find a Java wrapper for |
|||
|
|
|
The userdir prefix (e.g., '/home' or '/export/home') could be a configuration item. Then the app can append the arbitrary user name to that path. Caveat: This doesn't intelligently interact with the OS, so you'd be out of luck if it were a Windows system with userdirs on different drives, or on Unix with a home dir layout like /home/f/foo, /home/b/bar. |
|||
|
|