Get the current logged in OS user in Adobe Air - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T21:13:36Zhttp://stackoverflow.com/feeds/question/1376http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air1Get the current logged in OS user in Adobe AirShawn Simon2008-08-04T16:05:29Z2009-10-19T09:00:15Z
<p>I need the name of the current logged in user in my Air/Flex application. The application will only be deployed on Windows machines. I think I could attain this by regexing the User directory, but am open to other ways.</p>
http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/1380#13801Answer by Shawn Simon for Get the current logged in OS user in Adobe AirShawn Simon2008-08-04T16:19:45Z2008-08-04T16:19:45Z<p>Here is a solution that works in XP / Vista, but is definitely expandable to OSX, linux, I'd still be interested in another way.</p>
<pre><code> public static function GetCurrentOSUser():String{<br> // XP & Vista only.<br> var userDirectory:String = File.userDirectory.resolvePath("").nativePath;<br> var startIndex:Number = userDirectory.lastIndexOf("\\") + 1<br> var stopIndex:Number = userDirectory.length;<br> var user = userDirectory.substring(startIndex, stopIndex);<br> return user;<br> }<br></code></pre>http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/1386#13861Answer by Kevin for Get the current logged in OS user in Adobe AirKevin2008-08-04T16:29:37Z2008-12-25T01:38:14Z<p>May want to replace \ with File.separator to make it work on linux.</p>http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/1397#13971Answer by Kevin for Get the current logged in OS user in Adobe AirKevin2008-08-04T16:39:40Z2008-08-04T16:39:40Z<p>Also I would try:</p>
<pre><code>File.userDirectory.name<br></code></pre>
<p>But I don't have Air installed so I can't really test this...</p>http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/1426#1426-1Answer by Shawn Simon for Get the current logged in OS user in Adobe AirShawn Simon2008-08-04T17:09:39Z2008-08-04T17:09:39Z<p>Thanks kevkev</p>http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/28034#280341Answer by ianmjones for Get the current logged in OS user in Adobe Airianmjones2008-08-26T13:32:08Z2008-08-26T14:04:37Z<p>There's a couple of small cleanups you can make...</p>
<pre><code>package
{
import flash.filesystem.File;
public class UserUtil
{
public static function get currentOSUser():String
{
var userDir:String = File.userDirectory.nativePath;
var userName:String = userDir.substr(userDir.lastIndexOf(File.separator) + 1);
return userName;
}
}
}
</code></pre>
<p>As Kevin suggested, use File.separator to make the directory splitting cross-platform (just tested on Windows and Mac OS X).</p>
<p>You don't need to use resolvePath("") unless you're looking for a child.</p>
<p>Also, making the function a proper getter allows binding without any further work.</p>
<p>In the above example I put it into a UserUtil class, now I can bind to UserUtil.currentOSUser, e.g:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Label text="{UserUtil.currentOSUser}"/>
</mx:WindowedApplication>
</code></pre>
http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/417427#4174270Answer by Shawn Simon for Get the current logged in OS user in Adobe AirShawn Simon2009-01-06T17:26:17Z2009-01-06T17:26:17Z<p>Update way later: there's actually a built in function to get the current user. I think it's in nativeApplication.</p>
http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/1587626#15876260Answer by Jan Smutny for Get the current logged in OS user in Adobe AirJan Smutny2009-10-19T09:00:15Z2009-10-19T09:00:15Z<p>This solution doesnť work when the user has different login name and home directory name, which is common when OS is reinstalled or migrated. Does anyone know another solution. Please help.</p>