peacemaker Expert Licensed User Longtime User Apr 21, 2023 #1 Hi, All How to exclude some path from ZIPping ? Too huge files, if to work with ABMaterial projects. oops, sorry, @Erel , please, move to B4J question forum.
Hi, All How to exclude some path from ZIPping ? Too huge files, if to work with ABMaterial projects. oops, sorry, @Erel , please, move to B4J question forum.
Erel B4X founder Staff member Licensed User Longtime User Apr 23, 2023 #2 Export as zip isn't configurable in any way. You can do something similar to Zipper and create your own zipping tool. Zipper source code: https://www.b4x.com/android/forum/threads/comment-links-with-date-and-time.132262/#post-834930 Upvote 0
Export as zip isn't configurable in any way. You can do something similar to Zipper and create your own zipping tool. Zipper source code: https://www.b4x.com/android/forum/threads/comment-links-with-date-and-time.132262/#post-834930
peacemaker Expert Licensed User Longtime User Apr 23, 2023 #3 What path is passed into "Dim target As String = Args(0)" of Zipper ? Project root ? B4X: If f = "AutoBackups" Or f = "Objects" Then Continue Strange, why "Objects\www" is not passed during zipping... Last edited: Apr 23, 2023 Upvote 0
What path is passed into "Dim target As String = Args(0)" of Zipper ? Project root ? B4X: If f = "AutoBackups" Or f = "Objects" Then Continue Strange, why "Objects\www" is not passed during zipping...
Erel B4X founder Staff member Licensed User Longtime User Apr 24, 2023 #4 Zipper is the tool that runs when you click on this link in B4XPages projects: B4X: 'Ctrl + click to export as zip: ide://run?File=%B4X%\Zipper.jar&Args=Project.zip Args(0) = Project.zip in this case. RootFolder = project folder. Upvote 0
Zipper is the tool that runs when you click on this link in B4XPages projects: B4X: 'Ctrl + click to export as zip: ide://run?File=%B4X%\Zipper.jar&Args=Project.zip Args(0) = Project.zip in this case. RootFolder = project folder.
peacemaker Expert Licensed User Longtime User Apr 24, 2023 #5 Erel said: when you click on this link Click to expand... Ahhh, clear now ! I thought that menu "File\Export as ZIP" works via this Zipper tool - question is about this. Upvote 0
Erel said: when you click on this link Click to expand... Ahhh, clear now ! I thought that menu "File\Export as ZIP" works via this Zipper tool - question is about this.