In Julia, here are tow questions:
how to fid files list in folder
D:\\working? the files include"result_1.csv","result_2.csv","result_3.csv","result_4.csv"after using
CSV.Fileto combine CSV file, the class isvector. how to union them into a big DataFrame?
using CSV
using DataFrames
pwd()
cd("D:\\working\\logistics\\logistics_bill\\V5")
total = CSV.File.(["result_1月.csv","result_2月.csv"]).|>DataFrame