| 1. |
Solve : Copy from subdirectories.? |
|
Answer» Hi All!! Thanks !it's working perfectly. You edited your POST while I was answering the questions. 1. It is common practice in laying out code to indent structures such as loops, blocks, etc. This makes such elements of structure clearer. It is purely a matter of preference. It helps to SEE that you have matching numbers of start and finish structure statements, ESPECIALLY when structures are nested. EG in BASIC, but also in many other situations. Code: [Select] FOR J = 1 to 10 PRINT J PRINT J+6 NEXT J IF X=10 THEN PRINT X END IF IF A>10 THEN IF B = 6 THEN FOR X = B TO A PRINT X NEXT X END IF END IF 2. "delims==" tells FOR that the token delimiters are the BEGINNING and end of the each line (IE do not slice at spaces, commas, etc) "delims=," would result in dissection of lines at commas. Thanks for making easiest. Thanks, Jay |
|