com.webos.service.storageaccess

Note
This API has been available since API level 13.

API Summary

Provides a unified interface to access contents in different storage systems:

  • USB storage
  • Cloud storage provider (only Google Drive is supported)
  • Network storage provider (SambaServer and UPnPMediaServer are supported)
  • Internal storage

Overview of the API

NA

Methods

device/copy

ACG: storageaccess.operation
  • Added: API level 13

Description

Copies a file or directory from the source location to the destination.

Parameters

Name

Required

Type

Description

srcStorageTypeRequiredString

Indicates the source storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network

Note: This method is not supported for UPnPmediaserver.

srcDriveIdRequiredString

Indicates the source drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

srcPathRequiredString

Indicates the path of the source file or directory.

destStorageTypeRequiredString

Indicates the destination storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network

Note: This method is not supported for UPnPmediaserver.

destDriveIdRequiredString

Indicates the destination drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

destPathRequiredString

Indicates the path of the destination directory.

overwriteOptionalBoolean

Indicates if destination file must be overwritten, if it already exists.

Possible values are:

  • true: Overwrite existing copy.
  • false: Do not overwrite exisitng copy.
subscribeOptionalBoolean

Subscribe to get notified on the progress of the copy operation.

Possible values are:

  • true - Subscribed for notifications
  • false - Not subscribed

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
errorCodeOptionalNumber

Indicates the error code for the failed operation.

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Subscription Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

progressOptionalNumber

Indicates the progress of the copy operation in percentage.

Example

Example : Copy a file from a cloud storage provider to another location within the same storage provider

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/copy '{
   "srcStorageType":"cloud",
   "srcDriveId":"ojydIxW8yBZUV8J3NiyNBvJn",
   "destStorageType":"cloud",
   "destDriveId":"ojydIxW8yBZUV8J4NiyNBvJn",
   "srcPath":"/SAF/SAF_DEMO/test1.PNG",
   "destPath":"/SAF"
}'

Response:

{
    "returnValue": true
}

Example : Copy a file from within internal storage

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/copy '{
  "srcStorageType": "internal",
  "srcDriveId": "INTERNAL_STORAGE",
  "destStorageType": "internal",
  "destDriveId": "INTERNAL_STORAGE",
  "srcPath": "/home/guest0/source/srcfile.txt",
  "destPath": "/home/guest0/dest",
  "overwrite": true,
  "subscribe": true
}'

Response:

{
    "returnValue": true
}

Subscription Response:

{
    "returnValue": true,
    "progress": 10
}
{
    "returnValue": true,
    "progress": 40
}
{
    "returnValue": true,
    "progress": 70
}
{
    "returnValue": true,
    "progress": 100
}

device/eject

ACG: storageaccess.operation
  • Added: API level 13

Description

Ejects the storage device. In case of "cloud" storage type, it acts as a logout operation.

Note: This operation is not applicable for "internal" storage type.

Parameters

Name

Required

Type

Description

storageTypeRequiredString

Indicates the storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network

Note: This method is not supported for UPnPmediaserver.

driveIdRequiredString

Indicates the drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
errorCodeOptionalString

Indicates the error code for the failed operation.

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Example

Example : Eject USB drive

#luna-send -n 1 -f luna://com.webos.service.storageaccess/device/eject '{
   "storageType":"usb",
   "driveId":"4C531001600127113005-A7BE-1862"
}'

Response:

{
    "returnValue": true
}

device/getProperties

ACG: storageaccess.operation
  • Added: API level 13

Description

Gets properties of the given storage provider or the specified file or directory.

Parameters

Name

Required

Type

Description

storageTypeRequiredString

Indicates the storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network
driveIdRequiredString

Indicates the drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

pathOptionalString

Indicates the path of the file or directory.

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
storageTypeOptionalString

Indicates the type of storage provider.

writableOptionalBoolean

True if the device is writable.

deletableOptionalBoolean

True if the device is deletable.

totalSpaceOptionalNumber

Total storage space

freeSpaceOptionalNumber

Available free space

attributesOptionalObject array

Array of key value pair.

Example: {"noatime": true}

Note: These is just an example format. It may vary depending on the file system.

extAttributesOptionalObject array

Array of key value pair.

Example: {"user.comment": "saf comment"}

Note: These is just an example format. It may vary depending on the file system.

errorCodeOptionalNumber

Indicates the error code for the failed operation.

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Example

Example : Get properties of a cloud storage provider

# luna-send -i -f luna://com.webos.service.storageaccess/device/getProperties '{
   "storageType":"cloud",
   "driveId":"_4Z7KLy4uyH47NwJTB5FtIoT"
}'

Response:

{
    "returnValue": true,
    "deletable": false,
    "writable": true,
    "storageType": "cloud",
    "totalSpace": 548145,
    "freeSpace": 548145
}

Example : Get properties of file

# luna-send -i -f luna://com.webos.service.storageaccess/device/getProperties '{
   "storageType":"internal",
   "driveId": "INTERNAL_STORAGE",
   "path":"/tmp/internal/f1.txt"
}'

Response :

{
  "returnValue": true,
  "attributes": [
    {
      "LastModTimeStamp": "Fri Jan 23 23:34:02 -150875\n"
    }
  ],
  "deletable": false,
  "writable": true,
  "storageType": "internal"
}

device/handleExtraCommand

ACG: storageaccess.operation
  • Added: API level 13

Description

Handles addtional operation related to various providers.

Parameters

Name

Required

Type

Description

storageTypeRequiredString

Indicates the source storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network
driveIdOptionalString

Indicates the drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

operationRequiredObject: operation

Object consisting of details of the operation.

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
responsePayloadOptionalObject array

Response from the storage provider.

errorCodeOptionalNumber

Indicates the error code for the failed operation.

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Example

Example : For type authenticate

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/handleExtraCommand '{
   "storageType":"cloud",
   "driveId":"3OVs_ttW39gu",
   "operation":{
      "type":"authenticate",
      "payload":{
         "secretToken":"4/1AY0e-gmLYrDMo0affZ8"
      }
   }
}'

Response:

{
   "returnValue":true,
   "responsePayload":[
      {
         "payload":{
            "response":"1//0GmLTBDAi-abOi8amRQxLanOIj1Uwn_A3tsY"
         },
         "type":"authenticate"
      }
   ]
}

Example : For type login

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/handleExtraCommand '{
   "storageType":"cloud",
   "operation":{
      "type":"login",
      "payload":{
         "clientId":"22054195876-t6mo0ruhd0gb.apps.googleusercontent.com",
         "clientSecret":"3OVs_ttW39gu"
      }
   }
}'

Response: 

{
   "returnValue":true,
   "responsePayload":[
      {
         "payload":{
            "response":"https://accounts.google.com/o/oauth2/auth?scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive&redirect_uri=urn%3Aietfoauth%3A2.0%3Aoob&response_type=code&client_id=22054195876-t6mo0riocigrbs5d0gb.apps.googleusercontent.com&access_type=offline"
         },
         "type":"login"
      }
   ]
}

Example : For type token

# luna-send -i -f luna://com.webos.service.storageaccess/device/handleExtraCommand '{
   "storageType":"CLOUD",
   "operation":{
      "type":"token",
      "payload":{
         "clientId":"22054195876-t6mo0ruhd0gb.apps.googleusercontent.com",
         "clientSecret":"3OVs_ttW39gu",
         "refreshToken":"1//0GmLTBDAi-abOi8amRQxLanOIj1Uwn_A3tsY"
      }
   }
}'

Response:

{
    "returnValue": true
}

Example : For type mountSambaServer

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/handleExtraCommand '{
    "storageType": "network",
    "operation": {
        "type": "mountSambaServer",
        "payload": {
            "userName": "ubuntu",
            "password": "lge123",
            "ip": "192.168.31.68",
            "securityMode": "ntlmv2",
            "sharePath": "ubuntu",
            "mountFlag": "rw",
            "domain": "workgroup",
            "version": "2.0"
        }
    }
}'

Response:

{
    "responsePayload": [
        {
            "payload": {
                "mountPath": "/tmp/192.168.31.68_134"
            },
            "type": "mountSambaServer"
        }
    ],
    "returnValue": true
}

Example : For type discoverUPnPMediaServer

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/handleExtraCommand '{
    "storageType": "network",
    "operation": {
        "type": "discoverUPnPMediaServer"
    }
}'

Response:

{
    "responsePayload": [
        {
            "payload": {
                "mediaServer": [
                    {
                        "ip": "192.168.31.68",
                        "port": 49152,
                        "descriptionUrl": "http://192.168.31.68:49152/description.xml",
                        "name": "MEDIA SERVER NAME",
                        "urn": "urn:schemas-upnp-org:service:ContentDirectory:1"
                    }
                ]
            },
            "type": "discoverUPnPMediaServer"
        }
    ],
    "returnValue": true
}

device/list

ACG: storageaccess.operation
  • Added: API level 13

Description

Lists contents of the specified directory.

Parameters

Name

Required

Type

Description

storageTypeRequiredString

Indicates the source storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network
driveIdRequiredString

Indicates the drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

pathRequiredString

Indicates the path of the directory.

offsetRequiredNumber

Indicates the index/offset from where to list the files or directories.

limitRequiredNumber

Indicates the count of entries to be listed (1 - 100).

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
filesOptionalObject array: files

Provides information of the files or directories.

totalCountOptionalNumber

Total number of files or directories in the given path.

fullPathOptionalString

Full path of this file or directory.

errorCodeOptionalNumber

Indicates the error code for the failed operation.

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Example

Example : List contents of a directory

# luna-send -n 1 -f luna://com.webos.service.storageaccess/device/list '{
   "storageType":"cloud",
   "driveId":"ojydIxW8yBZUV8J3NiyNBvJn",
   "path":"/saf_demo_folder",
   "limit":10,
   "offset":1
}'

Response:

{
    "returnValue": true,
    "totalCount": 2,
    "fullPath": "/saf_demo_folder",
    "file": [
        {
            "size": 0,
            "type": "directory",
            "mimeType": "application/vnd.google-apps.folder",
            "path": "/saf_demo_folder/SAF",
            "name": "SAF"
        },
        {
            "size": 548146,
            "type": "regular",
            "mimeType": "application/pdf",
            "path": "/saf_demo_folder/invoice.pdf",
            "name": "invoice.pdf"
        }
    ]
    
}

device/move

ACG: storageaccess.operation
  • Added: API level 13

Description

Moves a file or directory from the source location to the destination.

Parameters

Name

Required

Type

Description

srcStorageTypeRequiredString

Indicates the source storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network

Note: This method is not supported for UPnPmediaserver.

srcDriveIdRequiredString

Indicates the source drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

destStorageTypeRequiredString

Indicates the destination storage provider. 

Possible values are:

  • cloud
  • usb
  • internal
  • network

Note: This method is not supported for UPnPmediaserver.

destDriveIdRequiredString

Indicates the destination drive ID.

Note: The drive ID can be found by using the listStorageProviders method.

srcPathRequiredString

Indicates the path of the source file or directory.

destPathRequiredString

Indicates the path of the destination directory.

overwriteOptionalBoolean

Indicates if destination file must be overwritten, if it already exists.

Possible values are:

  • true: Overwrite existing copy.
  • false: Do not overwrite exisitng copy.
subscribeOptionalBoolean

Subscribe to get notified on the progress of the copy operation.

Possible values are:

  • true - Subscribed for notifications
  • false - Not subscribed

Call Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

  • true: Indicates that the operation was successful.
  • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
errorCodeOptionalNumber

Indicates the error code for the failed operation

errorTextOptionalString

Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

Subscription Returns

Name

Required

Type

Description

returnValueRequiredBoolean

Indicates the status of the operation.

    progressOptionalNumber

    Indicates the progress of the copy operation in percentage.

    Example

    Example : Move the file to another location

    # luna-send -n 1 -f luna://com.webos.service.storageaccess/device/move '{
       "srcStorageType":"cloud",
       "srcDriveId":"ojydIxW8yBZUV8J3NiyNBvJn",
       "destStorageType":"cloud",
       "destDriveId":"ojydIxW8yBZUV8J3NiyNBvJn",
       "srcPath":"/SAF/SAF_DEMO/test1.PNG",
       "destPath":"/SAF"
    }'

    Response:

    {
        "returnValue": true
    }

    Example : Move a file from within internal storage

    # luna-send -n 1 -f luna://com.webos.service.storageaccess/device/move '{
      "srcStorageType": "internal",
      "srcDriveId": "INTERNAL_STORAGE",
      "destStorageType": "internal",
      "destDriveId": "INTERNAL_STORAGE",
      "srcPath": "/home/guest0/source/srcfile.txt",
      "destPath": "/home/guest0/dest",
      "overwrite": true,
      "subscribe": true
    }'

    Response:

    {
        "returnValue": true
    }

    Subscription Response:

    {
        "returnValue": true,
        "progress": 10
    }
    {
        "returnValue": true,
        "progress": 40
    }
    {
        "returnValue": true,
        "progress": 70
    }
    {
        "returnValue": true,
        "progress": 100
    }

    device/remove

    ACG: storageaccess.operation
    • Added: API level 13

    Description

    Deletes the specified file or directory.

    Parameters

    Name

    Required

    Type

    Description

    storageTypeRequiredString

    Indicates the storage provider. 

    Possible values are:

    • cloud
    • usb
    • internal
    • network

    Note: This method is not supported for UPnPmediaserver.

    driveIdRequiredString

    Indicates the drive ID.

    Note: The drive ID can be found by using the listStorageProviders method.

    pathRequiredString

    Inddicates the path of the file or directory.

    Call Returns

    Name

    Required

    Type

    Description

    returnValueRequiredBoolean

    Indicates the status of the operation.

    • true: Indicates that the operation was successful.
    • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
    errorCodeOptionalString

    Indicates the error code for the failed operation.

    errorTextOptionalString

    Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

    Example

    Example : Remove a file from a cloud storage provider

    # luna-send -n 1 -f luna://com.webos.service.storageaccess/device/remove '{
      "storageType": "cloud",
      "driveId": "ojydIxW8yBZUV8J3NiyNBvJn",
      "path": "/SAF/test1.PNG"
    }'

    Response:

    {
        "returnValue": true
    }

    device/rename

    ACG: storageaccess.operation
    • Added: API level 13

    Description

    Renames the specified file or directory.

    Parameters

    Name

    Required

    Type

    Description

    storageTypeRequiredString

    Indicates the storage provider. 

    Possible values are:

    • cloud
    • usb
    • internal
    • network

    Note: This method is not supported for UPnPmediaserver.

    driveIdRequiredString

    Indicates the drive ID.

    Note: The drive ID can be found by using the listStorageProviders method.

    pathRequiredString

    Indicates the path of the file or directory.

    newNameRequiredString

    Indicates the new name.

    Call Returns

    Name

    Required

    Type

    Description

    returnValueRequiredBoolean

    Indicates the status of the operation.

    • true: Indicates that the operation was successful.
    • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
    errorCodeOptionalNumber

    Indicates the error code for the failed operation

    errorTextOptionalString

    Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

    Example

    Example : Renames a file on a cloud storage provider

    # luna-send -n 1 -f luna://com.webos.service.storageaccess/device/rename '{
       "storageType":"cloud",
       "driveId":"ojydIxW8yBZUV8J3NiyNBvJn",
       "path":"/SAF/test1.PNG",
       "newName":"17.PNG"
    }'

    Response:

    {
        "returnValue": true
    }

    listStorageProviders

    ACG: storageaccess.operation
    • Added: API level 13

    Description

    Provides a list of storages providers and the corresponding drive information.

    Parameters

    Name

    Required

    Type

    Description

    subscribeOptionalBoolean

    Subscribe to get notifications.

    Possible values are:

    • true - Subscribed for notifications
    • false - Not subscribed

    Call Returns

    Name

    Required

    Type

    Description

    returnValueRequiredBoolean

    Indicates the status of the operation.

    • true: Indicates that the operation was successful.
    • false: Indicates that the operation failed. Check the "errorCode" and "errorText" fields for details.
    subscribeOptionalBoolean

    Indicates if subscribed to get notifications.

    storageProvidersOptionalObject array: storageProviders

    Provides information of the storage providers.

    errorCodeOptionalNumber

    Indicates the error code for the failed operation

    errorTextOptionalString

    Indicates the reason for the failure of the operation. See the API Error Codes Reference section for details.

    Example

    Example : Get a list of the storage providers available on the system

    # luna-send -n 1 -f luna://com.webos.service.storageaccess/listStorageProviders '{"subscribe": true}'

    Response:

    {
       "returnValue":true,
       "storageProviders":[
          {
             "usb":[
                {
                   "driveName":"sdg2",
                   "driveId":"4C531001600127113005-A7BE-1862",
                   "path":"/tmp/usb_rse_right/sdg2",
                   "fileSystem":"vfat"
                },
                {
                   "driveName":"sdg1",
                   "driveId":"4C531001600127113005-A6B3-2892",
                   "path":"/tmp/usb_rse_right/sdg1",
                   "fileSystem":"vfat"
                }
             ]
          },
          {
             "internal":[
                {
                   "driveName":"INTERNAL",
                   "driveId":"INTERNAL_STORAGE",
                   "path":"/tmp/internal"
                }
             ]
          },
          {
             "cloud":[
                {
                   "driveName":"GDRIVE",
                   "driveId":"ojydIxW8yBZUV8J3NiyNBvJn",
                   "path":"/"
                }
             ]
          }
       ]
    }

    Example : With subscription

    # luna-send -i -f luna://com.webos.service.storageaccess/listStorageProviders '{"subscribe": true}'

    Response:

    {
      "returnValue": true,
      "storageProviders": [
        {
          "usb": [
            {
              "path": "/tmp/usb_guest0/sdg1",
              "driveName": "sdg1",
              "driveId": "4C531001460127113020-B23A-EBFD",
              "fileSystem": "vfat"
            }
          ]
        },
        {
          "internal": [
            {
              "path": "/tmp/internal",
              "driveName": "INTERNAL",
              "driveId": "INTERNAL_STORAGE"
            }
          ]
        },
        {
          "cloud": [
            {
              "path": "/",
              "driveName": "GDRIVE",
              "driveId": "ojydIxW8yBZUV8J4NiyNBvJn"
            }
          ]
        }
      ]
    }

    Subscription Response:

    {
      "returnValue": true,
      "storageProviders": [
        {
          "usb": []
        },
        {
          "internal": [
            {
              "path": "/tmp/internal",
              "driveName": "INTERNAL",
              "driveId": "INTERNAL_STORAGE"
            }
          ]
        },
        {
          "cloud": [
            {
              "path": "/",
              "driveName": "GDRIVE",
              "driveId": "ojydIxW8yBZUV8J4NiyNBvJn"
            }
          ]
        }
      ]
    }

    Objects

    files

    Provides information of the file or directory.

    Name

    Required

    Type

    Description

    nameRequiredString

    Indicates the file name.

    typeRequiredString

    Indicates the type of file.

    Possible values are:

    • directory
    • regular
    • linkfile
    • unknown
    • and so on
    pathRequiredString

    Inidcates the path of the file or directory.

    sizeRequiredString

    Indicates the size in bytes.

    mimeTypeOptionalString

    Indicates the mime type of the file.

    operation

    Provides details of the operation.

    Name

    Required

    Type

    Description

    typeRequiredString

    Indicates the type of operation.

    Possible values are:

    • login
    • authenticate
    • token
    • mountSambaServer
    • discoverUPnPMediaServer
    payloadRequiredObject

    Details of the operation. The payload depends on the type specified.

    For types:

    • login, authenticate, and token - Check the related example of the "handleExtraCommand" command.
    • mountSambaServer - Check the Payload object below.
    • discoverUPnPMediaServer - No payload required.

    payload

    Arguments required for the operation in the form of key value pair

    Name

    Required

    Type

    Description

    userNameOptionalString

    User name required for mounting network storage.

    Default : guest

    sharePathRequiredString

    Share path of samba server.

    passwordOptionalString

    Password required for authentication.

    ipRequiredString

    IP address of network storage device.

    securityModeOptionalString

    Type of security. For example: ntlmv2, ntlmv2i, none, and so on.

    Default : none

    portOptionalString

    Samba server port.

    mountFlagOptionalString

    Mode of mounting. For example: ro (read-only), rw (read-write).

    Default : rw (read-write)

    ioCharsetOptionalString

    Charset used to convert local path names. For example: utf8, and so on.

    Default : utf8

    domainOptionalString

    Domain used to indicate the group. For example: workgroup.

    Default : workgroup

    versionOptionalString

    Samba version. For example: 1.0, 2.0, 3.0, and so on.

    Default : 2.0

    storageProviders

    Provides information about the storage provider.

    Name

    Required

    Type

    Description

    driveIdRequiredString

    Indicates the drive ID.

    Note: For internal storage the ID is INTERNAL_STORAGE.

    driveNameRequiredString

    Indicates the drive name.

    Note: For internal storage the name is INTERNAL and for cloud currently only GDRIVE (Google Drive) is supported.

    pathRequiredString

    Indicates the path of the drive.

    fileSystemOptionalString

    Indicates the file system type (only in case of USB).

    API Error Codes Reference

    Error Code

    Error Text

    Error Description

    2001Mount failed

    Mount failed

    6006Cloud Not Attached

    Cloud Not Attached

    6007Permission denied

    Permission denied

    6008Already Authenticated

    Already Authenticated

    6009Invalid URL

    Invalid URL

    6010File Not Supported

    File Not Supported

    8000Unknown error

    Unknown error

    8003Invalid parameter

    Invalid parameter

    8013Operation not permitted

    Operation not permitted.

    8014No such file or directory

    No such file or directory

    8015No such file or directory at Source

    No such file or directory at Source

    8016No such file or directory at Destination

    No such file or directory at Destination

    8017File exists

    File exists

    9002USB Storage has more partition

    USB Storage has more partition

    9003No USB Storage Exists with ID given

    No USB Storage Exists with ID given

    9004No USB drive found

    No USB drive found

    Contents