hi i have a big problem in batch, its kind of complicated to tell, but i figured out the way to solve it, the problem is i didnt know how to do it in batch, if in c# i can do it easily since im new in batch, below is c# , can u guys teach me how to do exactly like that in batch? i google'd whole day but cannot find a way, thanks in advance
ArrayList list = new ArrayList();
//let say variable "Filesx" consist of files count in one folder
for(int i = 0; i < Filesx; i++){
list.Add("file number : " + i);
}
P/S: if arraylist is not possible in batch, array alone is ok