LiquidCode Moderator Team
Joined: 05 Dec 2000 Posts: 1753 Location: Space and Time
|
Posted: Sat Feb 18, 2006 6:44 pm Post subject: |
|
|
You can D-n-D a folder but you would half to get the files yourself. Tommy has a great file listing dll flist.dll (comes with VDSdll3) or you would have to do it completely in VDS. something like..
| Code: |
list create,1
list dropfiles,1
%i = @item(1)
# check to see if the dir exists
if @file(%i,D)
list create,2
list filelist,2,%i\*.*
end
# you would have to make a repeat statement if you want to
# get files from a sub folder
|
Hope that helps _________________ Chris
Http://theblindhouse.com |
|