<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - : Command line bulk conversion from doc to odf not working"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=48413#c12">Comment # 12</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - : Command line bulk conversion from doc to odf not working"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=48413">bug 48413</a>
              from <span class="vcard"><a class="email" href="mailto:jhack89@gmail.com" title="Jacopo Tedeschi <jhack89@gmail.com>"> <span class="fn">Jacopo Tedeschi</span></a>
</span></b>
        <pre>I can confirm on LibreOffice version  6.4.3.2 (x64) for Windows 10 Pro x64 the
bug is still there. Wildcards should be definitely handled nicely by the
soffice executable in headless mode.

Example of not working command:
"C:\Program Files\LibreOffice\program\soffice.exe" -ArgumentList "--headless
--convert-to pdf *.odt

Workaround: if anyone is in search of a temporary solution, you may use a
powershell or batch script. Here is a simple example Powershell script I wrote
to convert all odt documents inside a folder to pdf:

Get-ChildItem *.odt | Foreach {
  Write-Host "Converting `"$_`" ..."
  Start-Process -Wait -FilePath "C:\Program
Files\LibreOffice\program\soffice.exe" -ArgumentList "--headless --convert-to
pdf `"$_`""
}

You may:
- change "Get-ChildItem *.odt" to your favourite input format. Ex.
"Get-ChildItem *.docx"
- add -Recurse to it if you need to convert files in nested folders. Ex.
"Get-ChildItem *.odt -Recurse"
- change "--convert-to pdf" to your needed output format. Ex. "--convert-to
docx"

Hope this issue gets addressed.
Good luck everyone!</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>