Hi Luis,
Not sure what you mean by
What is the best way to import many data files and names this files
I assume you want to have the symbols generated in dd
to be set to the contents of the corresponding file.
Is there a reason to hardcode the Range
? Why not Range@Length@names
?
dd = Symbol /@ ("data" <> ToString[#] & /@ Range[325])
Then
MapThread[(#1 = #2) &, {dd, allData}]