Unity打包Pc(Windows)後,複製一個exe到打包後的Plugins資料夾
#if UNITY_STANDALONE_WIN
[UnityEditor.Callbacks.PostProcessBuild(999)]
public static void OnPostprocessBuild (UnityEditor.BuildTarget BuildTarget, string path)
{
if (BuildTarget != UnityEditor.BuildTarget.StandaloneWindows)
return;
//PC(WINDOWS)打包後期指令碼:複製abc.exe到打包後的Plugins資料夾
UnityEngine.Debug.Log (path);
var strPathFrom= UnityEngine.Application.dataPath +"/Plugins/x86/abc.exe";
var nIdxSlash = path.LastIndexOf ('/');
var nIdxDot = path.LastIndexOf ('.');
var strRootTarget = path.Substring ( 0 , nIdxSlash ) ;
var strPathTargetFile = strRootTarget + path.Substring( nIdxSlash , nIdxDot-nIdxSlash )+"_Data/Plugins/abc.exe";
System.IO.File.Copy(strPathFrom,strPathTargetFile);
UnityEngine.Debug.Log ( "複製" + strPathFrom + "\t到\t"+strPathTargetFile);
}
#endif
相關文章
- maven專案打包說有依賴jar包到一個資料夾MavenJAR
- C# 將資料夾中檔案複製到另一個資料夾C#
- 複習webpack4之使用plugins便捷打包WebPlugin
- maven 打包不複製資源Maven
- Inno Step 打包檔案成.exe時候刪除指定資料夾
- Python 打包 windows 可執行的 exe 檔案PythonWindows
- python複製資料夾到一個目錄,或者按目錄層級建立複製Python
- linux複製檔案到另一個資料夾怎麼操作 linux複製檔案的命令介紹Linux
- 修改vue打包後的結構Vue
- django打包成exe格式Django
- 使用tar打包,如何排除某些資料夾呢?
- vue打包後,訪問不到Vue
- Unity——WegGL打包問題Unity
- Unity——AssetBundle打包工具Unity
- 踩坑PHP複製檔案到另外資料夾PHP
- PyInstaller打包Python程式為exePython
- python程式碼打包exe程式Python
- WINDOWS自動打包目錄指令碼 複製到遠端備份伺服器儲存Windows指令碼伺服器
- 在windows下匯入react專案並且打包編譯後部署到nginx上WindowsReact編譯Nginx
- pyinstaller打包pytest+allure框架的程式碼後,執行時exe: error: unrecognized arguments: --alluredir框架ErrorZed
- InstallShield 打包後,啟動軟體
- 使用pyinstaller打包exe檔案教程
- nuitka: Python程式碼打包為exeUIPython
- pyinstaller打包python成.exe檔案Python
- Windows 複製 xcopy 檔案到另外一個 目錄Windows
- NodeJS 後端工程 Docker 打包優化NodeJS後端Docker優化
- 解決vue打包專案後點選dist資料夾中的index.html網頁顯示一片空白的問題VueIndexHTML網頁
- VS打包專案成.exe&.msi
- 使用PyInstaller打包檔案為exe程式
- 安卓shell 移動某個時間之後的檔案到另外一個資料夾 命令記錄安卓
- 一個從0到1的webpack打包vue基礎教程WebVue
- 記一次對webpack打包後程式碼的失敗探究Web
- Unity3D - 如何引入包到指定的資料夾Unity3D
- C# Winform 使用Costura.Fody打包一個成可獨立執行的exeC#ORM
- 使用 Pyinstaller 打包為 windows exe程式 新增管理員許可權的多種方式Windows
- [打包優化]從0到1搭建element後臺框架優化篇優化框架
- 資料夾變exe資料找回方法
- Webpack | webpack.config.js配置及基礎module、plugins打包WebJSPlugin
- unity2022.3.9+Pico更換渲染管線後打包,人物材質不可顯示問題Unity