I create portable QGIS. It is done by copy QGIS2 folder in other computer. I have startup file so that QGIS will do the command. I can run QGIS in batch file. The code :
echo D | xcopy /s/e/y "%~dp0DATA\.qgis2" C:\Users\%username%\.qgis2
start /d "Running QGIS2" /D "%~dp0DATA\QGIS2\bin" qgis.bat
Then I want to open 1.qgs project. Then I add the code :
start /d "Running QGIS2" /D "%~dp0DATA\QGIS2\bin" qgis.bat "%~dp0DATA\PROJECT" 1.qgs
But, there is a message. Unable to open D:/./././1.qgs. So, what's wrong in my code?