Jump to content

Reading a Directory Name


Guest DMoney
 Share

Recommended Posts

Guest DMoney

I need to read a directory into a variable so i can compare a string to the first 6 characters of that directory.

anyone know how?

Link to comment
Share on other sites

  • 1 month later...

I need to read a directory into a variable so i can compare a string to the first 6 characters of that directory.

anyone know how?

<{POST_SNAPBACK}>

SetEnv, DirOut, C:\\Directory-Output.txt

; Note: Run DOS batch file to extract the directory info

RunWait, Cmd.exe /c Dir C:\\(dirname) /s /w > "%DirOut%"

FileReadLine, Input,%DirOut%,4

StringMid, DirFiles,Input,0015,0006

This will read the 4th line of C:\Directory-Output.txt and variable %DirFiles% will contain the first 6 characters of the directory name.

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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