Examples of how to use DocTo
Sometimes you wish to convert a file and give it a non standard extension.
The command line below shows how you can convert all the Microsoft Word Documents in a folder to a Latest Microsoft Office Word 365 Version Format file - DOC and give them the extension of .DOCX.
docto -WD -f 'c:\path\todocuments' -o 'c:\path\toOutputfiles' -ox '.DOCX' -t wdFormatDocumentDefault
or easier to read
docto -WD
-f 'c:\path\todocuments'
-o 'c:\path\toOutputfiles'
-ox '.DOCX'
-t wdFormatDocumentDefault
-WD
: This is a conversion using Microsoft Word. This is not required but makes it easier to read-f
: The File or directory to be converted-o
: The Output File or Directory where you would like the converted file to be written to.-ox
: The Output extension to be used for converted files-T
: The file format type that is being converted toYou might find some of the following commands also interesting.
DocTo source on Github| Index of Examples | Download Latest Release