Last active
July 4, 2021 10:41
-
-
Save maz-1/3f7c0c8a9ec048598f1f109869929ee1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var format = ".pts"; | |
var filepath = new String(); | |
filepath = "C:\\Users\\benoit.passot\\Documents\\"; | |
var arrayCloudToExport=SCloud.FromSel(); | |
for (i=0; i<arrayCloudToExport.length;i=i+1) | |
{ | |
var myCloudToExport=arrayCloudToExport[i]; | |
var myAlignedCloudName=myCloudToExport.GetName(); | |
var myFilePath1 = filepath; | |
myFilePath1 += myAlignedCloudName; | |
myFilePath1 += format; | |
myCloudToExport.Save(myFilePath1,'.',false ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment