Class FileUtils
Assembly: Xareus.Unity.Utils.dll
Syntax
public static class FileUtils
Methods
GetAssetFullPath(Object)
Declaration
public static string GetAssetFullPath(Object asset)
Parameters
Type |
Name |
Description |
Object |
asset |
|
Returns
GetGameObjectFullPath(GameObject)
Computes the complete path to a GameObject
Declaration
public static string GetGameObjectFullPath(this GameObject gameObject)
Parameters
Type |
Name |
Description |
GameObject |
gameObject |
The GameObject which path is desired
|
Returns
Type |
Description |
string |
A string listing the complete path to a GameObject
|
GetProjectRelativeOrAbsolutePath(string)
Returns the relative path to the Assets folder if the file is inside the project, otherwise returns the absolute path.
Declaration
public static string GetProjectRelativeOrAbsolutePath(string filePath)
Parameters
Type |
Name |
Description |
string |
filePath |
|
Returns
GetRelativeToDataFilePath(string)
Returns the relative path to the Assets folder. The resulting path always has '/' as directory separator.
Declaration
public static string GetRelativeToDataFilePath(string filePath)
Parameters
Type |
Name |
Description |
string |
filePath |
|
Returns