Get the current logged in OS user in Adobe Air - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:13:36Z http://stackoverflow.com/feeds/question/1376 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air 1 Get the current logged in OS user in Adobe Air Shawn Simon 2008-08-04T16:05:29Z 2009-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#1380 1 Answer by Shawn Simon for Get the current logged in OS user in Adobe Air Shawn Simon 2008-08-04T16:19:45Z 2008-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 &amp; 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#1386 1 Answer by Kevin for Get the current logged in OS user in Adobe Air Kevin 2008-08-04T16:29:37Z 2008-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#1397 1 Answer by Kevin for Get the current logged in OS user in Adobe Air Kevin 2008-08-04T16:39:40Z 2008-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 -1 Answer by Shawn Simon for Get the current logged in OS user in Adobe Air Shawn Simon 2008-08-04T17:09:39Z 2008-08-04T17:09:39Z <p>Thanks kevkev</p> http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/28034#28034 1 Answer by ianmjones for Get the current logged in OS user in Adobe Air ianmjones 2008-08-26T13:32:08Z 2008-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>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;mx:Label text="{UserUtil.currentOSUser}"/&gt; &lt;/mx:WindowedApplication&gt; </code></pre> http://stackoverflow.com/questions/1376/get-the-current-logged-in-os-user-in-adobe-air/417427#417427 0 Answer by Shawn Simon for Get the current logged in OS user in Adobe Air Shawn Simon 2009-01-06T17:26:17Z 2009-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#1587626 0 Answer by Jan Smutny for Get the current logged in OS user in Adobe Air Jan Smutny 2009-10-19T09:00:15Z 2009-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>