示例#1
0
    private void CopyToDownloadPath()
    {
        var srcPath  = BuildConfiger.InterpretedOutputPath;
        var destPath = BMUtility.InterpretPath(BuildConfiger.CopyFolderStr, BuildConfiger.AutoBundleBuildtarget);

        if (Directory.Exists(destPath))
        {
            Directory.Delete(destPath, true);
        }
        BuildHelper.CopyFiles(srcPath, destPath);
    }