top of page
- API -

reaper.AZ_P4_Disconnect()

- API Detail -

▼入力値

▼出力値


※本APIを使用する場合、Perforce P4をインストールする必要があります

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())                

require("reaper_AZSTOKE_GOLD")                


url = -- perforceサーバーのurl            

userName = --ユーザー名 

password = --パスワード


workspace = -- ワークスペース名

depotPath = -- デポ上のパス


isConnected = reaper.AZ_P4_Connect(url, userName, password)

Msg("接続: " .. tostring(isConnected))


if isConnected then

  

    fileList = reaper.AZ_P4_SyncFiles(workspace, depotPath, -1, "wav")


    ShowObject(fileList)


 reaper.AZ_P4_Disconnect()


end



Perforce

AZ_P4_Disconnect

対応バージョン:

1.3.0

以降

Perforceサーバーから切断

bottom of page