Jump to content

string in path


phew
 Share

Recommended Posts

hi,

i got following problem:

in C:\misc\music

there are x folders (called: "riddims", "albums", etc.), i want to save each folder's name in an array or variable. how do i do that?

$search = FileFindFirstFile("C:\misc\music\*.*")  

If $search = -1 Then
    Exit
EndIf

While 1
    $file = FileFindNextFile($search) 
    If @error Then ExitLoop
    msgbox(0, "", $file)
WEnd

FileClose($search)

msgbox every folder name, but how to save them in an array or each name into an variable?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...