Class DirectoryInfo

Definition

Namespace:
Tizen.Applications
Assembly:
Tizen.Applications.Common.dll
API Level:
3

Represents directory information of the application.

C#
Copy
public class DirectoryInfo : object
Inheritance
DirectoryInfo

Properties

View Source

Cache

Gets the absolute path to the application's cache directory, which is used to store temporary data of the application.

Declaration
C#
Copy
public string Cache { get; }
Property Value
Type Description
String
API Level: 3
View Source

Data

Gets the absolute path to the application's data directory, which is used to store private data of the application.

Declaration
C#
Copy
public string Data { get; }
Property Value
Type Description
String
API Level: 3
View Source

ExpansionPackageResource

Gets the absolute path to the application's TEP(Tizen Expansion Package) directory. The resource files are delivered with the expansion package.

Declaration
C#
Copy
public string ExpansionPackageResource { get; }
Property Value
Type Description
String
API Level: 3
View Source

ExternalCache

Gets the absolute path to the application's external cache directory, which is used to store temporary data of the application.

Declaration
C#
Copy
public string ExternalCache { get; }
Property Value
Type Description
String
API Level: 3
View Source

ExternalData

Gets the absolute path to the application's external data directory, which is used to store data of the application.

Declaration
C#
Copy
public string ExternalData { get; }
Property Value
Type Description
String
API Level: 3
View Source

ExternalSharedData

Gets the absolute path to the application's external shared data directory, which is used to share data with other applications.

Declaration
C#
Copy
public string ExternalSharedData { get; }
Property Value
Type Description
String
API Level: 3
View Source

Resource

Gets the absolute path to the application resource directory. The resource files are delivered with the application package.

Declaration
C#
Copy
public string Resource { get; }
Property Value
Type Description
String
API Level: 3
View Source

SharedData

Gets the absolute path to the application's shared data directory, which is used to share data with other applications.

Declaration
C#
Copy
public string SharedData { get; }
Property Value
Type Description
String
API Level: 3
View Source

SharedResource

Gets the absolute path to the application's shared resource directory, which is used to share resources with other applications.

Declaration
C#
Copy
public string SharedResource { get; }
Property Value
Type Description
String
API Level: 3
View Source

SharedTrusted

Gets the absolute path to the application's shared trusted directory, which is used to share data with a family of trusted applications.

Declaration
C#
Copy
public string SharedTrusted { get; }
Property Value
Type Description
String
API Level: 3

Methods

View Source

GetResourceControlAllowedResource(String)

Gets the absolute path to the application's resource control directory, which is used to share the allowed resources of the resource packages.

Declaration
C#
Copy
public string GetResourceControlAllowedResource(string resourceType)
Parameters
Type Name Description
String resourceType

The resource type defined in the resource package

Returns
Type Description
String

The absolute path to the application's resource control directory, which is used to share the allowed resources of the resource packages.

API Level: 11
View Source

GetResourceControlGlobalResource(String)

Gets the absolute path to the application's resource control directory, which is used to share the global resources of the resource packages.

Declaration
C#
Copy
public string GetResourceControlGlobalResource(string resourceType)
Parameters
Type Name Description
String resourceType

The resource type defined in the resource package

Returns
Type Description
String

The absolute path to the application's resource control directory, which is used to share the global resources of the resource packages.

API Level: 11

Extension Methods