I wish to load files from my DirAssets directory, one of which has the name g1d302.mp3.
The code is, in part,
dim I as integer
dim FilLst as List
dim FilNam as string
FilLst.Initialize
FilLst=File.ListFiles(Dir.Assets)
For I=0 to FilLst.Size-1
FilNam=FilLst.get(I)
---------------------------
When the file (named above) is loaded, FilName has the value
g1d302.mp3.unblocked.
Why has ".unblocked" been appended? How do I avoid that?
Can someone explain this and provide a solution?
Help!
The code is, in part,
dim I as integer
dim FilLst as List
dim FilNam as string
FilLst.Initialize
FilLst=File.ListFiles(Dir.Assets)
For I=0 to FilLst.Size-1
FilNam=FilLst.get(I)
---------------------------
When the file (named above) is loaded, FilName has the value
g1d302.mp3.unblocked.
Why has ".unblocked" been appended? How do I avoid that?
Can someone explain this and provide a solution?
Help!