Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: multipule lines as a var  (Read 6580 times)

0 Members and 1 Guest are viewing this topic.

dakota

  • Guest
Re: multipule lines as a var
« Reply #15 on: June 28, 2006, 02:49:42 PM »
i could have it go only to a file and have my batch file use that file and then out put to a new file and delete the temp file with the file list in it.

dakota

  • Guest
Re: multipule lines as a var
« Reply #16 on: June 29, 2006, 09:35:31 PM »
any help because when i have it go out to a file it goes out as only the first line.

GuruGary



    Adviser
    Re: multipule lines as a var
    « Reply #17 on: June 29, 2006, 10:18:43 PM »
    Post your code so we can help you troubleshoot the problem.

    dakota

    • Guest
    Re: multipule lines as a var
    « Reply #18 on: June 29, 2006, 10:32:09 PM »
    @echo off
    :start
    ::================================================
    set fup=fup
    set pur=purge
    set alt=altpr
    set sec=secure
    set cod=,code 100
    set ccc=,"cccc"
    set Infile=temp.dak
    set Outfile=purge.jim
    ::================================================
    for /f "tokens=1 delims= " %%a in ('dir /AD ^| findstr /R /V "\.\>" ^| find /c "<DIR>"') do set dirs=%%a
    echo %dirs%
    pause
    ::for /f "skip=%dirs%" %%a in ('dir /b /o:g') do echo %fup% %pur% %%a >testttt.txt& set list=%%a

    for /f "skip=%dirs%" %%a in ('dir /b /o:g') do call :sub %%a
    set dirs=
    goto :eof
    :sub %%a
    set  dirs=%1
    for /f "skip=%dirs%" %%a in ('dir /b /o:g') do echo %%a  
    echo %list%

    pause
    ::for /f "delims=" %%a in ("%list%") do echo %fup% %pur% %%a>>%Outfile%
    ::echo.>>%Outfile%
    ::for /f "delims=" %%a in ("%list%") do echo %fup% %alt% %%a %cod%>>%Outfile%
    ::echo.>>%Outfile%
    ::for /f "delims=" %%a in ("%list%") do echo %fup% %sec% %%a %ccc%>>%Outfile%
    ::echo.>>%Outfile%
    ::pause

    dakota

    • Guest
    Re: multipule lines as a var
    « Reply #19 on: June 29, 2006, 10:34:03 PM »
    the part at the bottom with all of the for loops is for the part wher i add things onto the file or var ;D ;D

    dakota

    • Guest
    Re: multipule lines as a var
    « Reply #20 on: June 29, 2006, 10:38:22 PM »
    And what i am trying to do with this is get a list of all the files in a derectory (the one the batch file is in) and have only the files and no directories incluted and it needs to be in the bare format.

    GuruGary



      Adviser
      Re: multipule lines as a var
      « Reply #21 on: June 29, 2006, 10:42:12 PM »
      I don't see anything that outputs to a file that is not commented out.  What is the problem with the script?  What is it doing, and what do you want it to do?

      GuruGary



        Adviser
        Re: multipule lines as a var
        « Reply #22 on: June 29, 2006, 10:51:09 PM »
        Is there a reason you don't use the command:
        Code: [Select]
        dir /b /a-d
        Or to save it to a file, use:
        Code: [Select]
        dir /b /a-d >testtt.txt
        Or if you want the list in a semi-colon separated environment variable, use:
        Code: [Select]
        @echo off
        set FileList=
        for /f "delims=" %%a in ('dir /b /a-d') do call :AppendList %%a
        echo FileList is: %FileList%
        goto :EOF

        :AppendList
        set FileList=%FileList%;%1
        goto :EOF

        GuruGary



          Adviser
          Re: multipule lines as a var
          « Reply #23 on: June 29, 2006, 10:54:02 PM »
          For the "save to a file" method and then list them it would be like:
          Code: [Select]
          @echo off
          dir /b /a-d >testtt.txt
          echo List of files is:
          type testtt.txt

          dakota

          • Guest
          Re: multipule lines as a var
          « Reply #24 on: June 29, 2006, 10:54:24 PM »
          Ok i gust want to start freash. Could you make me a script that will get a list off all the files in a directory (not include the dirs) in bear format an output them to a file please.

          dakota

          • Guest
          Re: multipule lines as a var
          « Reply #25 on: June 29, 2006, 10:54:57 PM »
          looks like i posted late lol

          dakota

          • Guest
          Re: multipule lines as a var
          « Reply #26 on: June 29, 2006, 11:04:43 PM »
          OMG are you serus it is that easy i could never figer out what the - was for (prefix meaning not?????????) <--still dont get what that means but think you.

          ghostdog74



            Specialist

            Thanked: 27
            Re: multipule lines as a var
            « Reply #27 on: June 29, 2006, 11:21:04 PM »
            Quote
            OMG are you serus it is that easy i could never figer out what the - was for (prefix meaning not?????????) <--still dont get what that means but think you.
            i suppose you are taking about dir /a-d ? check out dir /? .. it explains...
            Code: [Select]

              /A          Displays files with specified attributes.
              attributes   D  Directories                R  Read-only files
                           H  Hidden files               A  Files ready for archiving
                           S  System files               -  Prefix meaning not

            "-" meaning not... so /a-d means display files, not directories...

            dakota

            • Guest
            Re: multipule lines as a var
            « Reply #28 on: June 29, 2006, 11:43:14 PM »
            think you so much i have been working on this 4ever i cant beleav that all i needed was a simple - lol ok think you very very much.