Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
Implementing QV Deployment Framework.
Created a container for QVD repository so only using 2.QVD in that container.
Structured the 2.QVD with some subfolders and now I need to know how to create a variable path to each subfolder.
call LoadContainerGlobalVariables('Qvd_Storage','QVD'); creates $(vG.Qvd_StorageQVDPath) and points to 1.QVD_Storage\2.QVD
In this case I have a subfolder 1.Mappings
Now I do this Store table into $(vG.Qvd_StorageQVDPath)\1.Mappings\SomeQvd.qvd (qvd);
Now I would like to have variables for each subfolder in 1.QVD_Storage\2.QVD
$(vG.Qvd_StorageMappingPath) sort of...
Kind regards
Hi Thomas, the idea is to use the $(vG.Qvd_StorageQVDPath)\1.Mappings\ as you do today.
The reason being to keep amount of variables down.
There is a function called CreateFolder that can be used in the application to recreate sub folders when moving application between containers/environments so that the application wont fail:
Call CreateFolder('$(vG.Qvd_StorageQVDPath)\1.Mappings\')
Hope that this will help you.
Cheers