Version: 2022.3
言語: 日本語
public static string GetLogicalPath (string path);

パラメーター

path Physical path.

戻り値

string Logical path.

説明

Converts a physical path to a logical path.

Logical paths in Unity are virtual paths which point to real (or "physical") file and directory paths on disk. They're designed to be shorter and simpler, making them easier to work with than the real file paths. For example in Unity you might see a logical path such as:

Packages/MyPackage/MyFile.txt

Which points to a physical file at:

C:/Users/SomeUser/MyProject/Library/PackageCache/MyPackage@1.0.0/MyFile.txt

When working inside Unity, these mappings occur automatically, so in most situations you do not need to call these methods to convert from logical to physical paths. However in certain situations if you are working with external tools that are unaware of Unity's logical paths, you may need to use these methods to provide the mapping between logical and physical paths.

See Also: [FileUtil.GetPhysicalPath]