public static string[] GetDependencies (string pathName);
public static string[] GetDependencies (string pathName, bool recursive);

参数

pathName需要依赖项的资源的路径。
recursive如果为 false,仅返回其为输入直接依赖项的资源;如果为 true,则包含输入的所有间接依赖项。默认为 true。

返回

string[] 输入依赖的所有资源的路径。

描述

给定一个 pathName,返回其依赖的所有资源的列表。

如果 recursive 为 true,返回的列表也将包含输入路径本身。请注意,此函数返回输入资源所引用的所有资源;而在构建过程中不一定需要这些引用。


public static string[] GetDependencies (string[] pathNames);
public static string[] GetDependencies (string[] pathNames, bool recursive);

参数

pathNames需要依赖项的资源的路径。
recursive如果为 false,仅返回其为输入直接依赖项的资源;如果为 true,则包含输入的所有间接依赖项。默认为 true。

返回

string[] 输入依赖的所有资源的路径。

描述

给定一个 pathNames 数组,返回输入所依赖的所有资源的列表。

如果 recursive 为 true,返回的列表也将包含输入路径本身。请注意,此函数返回输入资源所引用的所有资源;而在构建过程中不一定需要这些引用。