ID:1917998
 
(See the best response by Ter13.)
Code:
mob/proc/ListPictures()
for(var/file in flist("Graphic/"))
Picture_list+= file


Problem description:

Hi is posible to add only name file, to list?
flist returns a list of filename strings, so essentially that is all you're doing in the example above.
Best response
Not sure why you are iterating through the list.

Picture_list.Add(flist("Graphic/"))