geekunit Posted January 19, 2007 Posted January 19, 2007 Wanted to do a *simple* recursive directory listening. Was trying to do: $runPID = Run(@ComSpec & "/c " & 'dir /s /b', "", @SW_MAXIMIZE) But I keep getting the error that AutoIt can't find the specified file. What am I doing wrong?
Danny35d Posted January 19, 2007 Posted January 19, 2007 You should try SmOke_N _FileListToArrayEx AutoIt Scripts:NetPrinter - Network Printer UtilityRobocopyGUI - GUI interface for M$ robocopy command line
Valuater Posted January 19, 2007 Posted January 19, 2007 I agree with Danny...but this is an example $PID = Run(@ComSpec & " /c dir *. /s /b", $workingdir, @SW_HIDE, $STDOUT_CHILD) 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now