Show / Hide Table of Contents

Class DataPath

Namespace: UTJ.FrameCapturer
Assembly: Assembly-CSharp.dll
Syntax
[Serializable]
public class DataPath

Constructors

DataPath()

Declaration
public DataPath()

DataPath(String)

Declaration
public DataPath(string path)
Parameters
Type Name Description
System.String path

DataPath(DataPath.Root, String)

Declaration
public DataPath(DataPath.Root root, string leaf)
Parameters
Type Name Description
DataPath.Root root
System.String leaf

Fields

m_leaf

Declaration
[SerializeField]
string m_leaf
Field Value
Type Description
System.String

m_root

Declaration
[SerializeField]
DataPath.Root m_root
Field Value
Type Description
DataPath.Root

Properties

leaf

Declaration
public string leaf { get; set; }
Property Value
Type Description
System.String

readOnly

Declaration
public bool readOnly { get; set; }
Property Value
Type Description
System.Boolean

root

Declaration
public DataPath.Root root { get; set; }
Property Value
Type Description
DataPath.Root

Methods

CreateDirectory()

Declaration
public void CreateDirectory()

GetFullPath()

Declaration
public string GetFullPath()
Returns
Type Description
System.String
Back to top