Dear fellows,
Is there a method for auto changed digit ?
For example , a file is saved everyday with different file name like one day is 1…
the next day is 2… something like this.
Dear fellows,
Is there a method for auto changed digit ?
For example , a file is saved everyday with different file name like one day is 1…
the next day is 2… something like this.
Hi @PARK_Bin
1.Create an Asset in Orchestaror and give 1
Regards,
Hi @PARK_Bin
You can try saving the days and flag values in a excel sheet like shown below , and for each day after file gets generated set the flag value of that particular day and the next day.
Write logic to only pick up the day with a particular flag value …
Hi @PARK_Bin,
This can be achieved by Determining the number of files present in the folder and Incrementing it by 1, This number can then be used to Name your file. To get the number of files present in a folder , you can use the Directory.GetFiles
method, which returns an array of file paths. You can then use the .Length
property to determine the number of files in that array.
Use an Assign Activity:
Directory.GetFiles
.filesArray = Directory.GetFiles("YourFolderPath")
Get the Count of Files:
.Length
property.fileCount = filesArray.Length
Increment the fileCount:
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.