|
This online help file is for EFT Server version 6.2.x. For other versions of EFT Server, please refer to http://help.globalscape.com/help/index.html. (If the Index and Contents are hidden, click Show Contents pane in the top left corner of this topic.) |
Use the ICIClientSettings interface GetHomeDir method to find the whether the user or User Settings Level can have a separate home folder.
In EFT Server 6.0.x and earlier:
HRESULT GetHomeDir(
[out, optional] VARIANT_BOOL *pInherited,
[out, retval] long *pVal);
In EFT Server 6.1 and later:
GetHomeDir(
[out, optional] VARIANT *pInherited, //option is inherited
//from parent?
[out, retval] VARIANT_BOOL *pVal); //client has separate folder?
Example (VBScript):
If client.GetHomeDir Then
MsgBox "Client has separate home folder"
End If
Refer to User Account General Settings for an illustration of how this and other Client Settings Interface Methods and Properties can be accessed in the Administrator interface. This method correlates to the User Home Folder check box on the user' account's General tab.