Hello,
If the error you are getting is still the one saying that “EasySave does not support this type”, maybe I think that we should contact the EasySave author, since all that the FC integration nodes do, is directly calling EasySave functions (no tricks in between).
The EasySave API [LINK], shows that it should work:
1
2
3
4
5
6
7
8
9
10
11
// Create a List of int values and save it.
List myList<int>=newList<int>();
myList.Add(1);
myList.Add(2);
ES2.Save(myList,"myFile.txt?tag=myList");
// Load the List and re-assign it to our variable.