BUG Report:Space in Path

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • iLibra
    New User
    • Oct 2008
    • 1

    BUG Report:Space in Path

    I have write a script:

    load %2 %1
    filter "*.c;*.h"
    expand all
    select all
    file-report layout:statistics &
    options:ignore-unimportant,display-mismatches&
    output-to:"%3"

    but if I pass a path which has space to %2 or %1 like:
    bc3.exe @test_script.exe d:\foo bar\test\ d:\another test\test\

    the BC3 cannot get the path correctly.
  • chrroe
    Pooh-Bah
    • Oct 2007
    • 588

    #2
    Hi!

    That's simple to solve, use quotes with the load command:
    Code:
    load "%2" "%1"
    Then it works ...


    Bye
    Christoph

    Comment

    Working...