from arcpy import env
env.workspace = "E:/Mardan"
inRaster = "LULC20201.tif"
outPolygons = "E:/Mardan/check.shp"
field = "VALUE"
arcpy.RasterToPolygon_conversion(inRaster, outPolygons, "NO_SIMPLIFY", field)
This is a code to vectorize 1 file at a time. I want to vectorize multiple files at a time and save them in one directory