Guest DMoney Posted July 8, 2005 Posted July 8, 2005 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?
EightPaws Posted August 24, 2005 Posted August 24, 2005 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,0006This will read the 4th line of C:\Directory-Output.txt and variable %DirFiles% will contain the first 6 characters of the directory name.
Recommended Posts