I would like to ask a question about “Verypdf”. Can the software convert the txt file to pdf automatically?
1) I want to set an instruction to scan txt files in a folder and convert it to pdf file automatically once a txt file is uploaded into the designated folder.
Do the software support this instruction?
2) Also, I want to convert the txt file to pdf in same file name and
3) may it converts bulk files to pdf at the same time?
Do I need to set any command for the instruction? Or the software has function to scan and convert on schedule time like every minute once time?
Thank you very much!
==============================
>>I would like to ask a question about “Verypdf”. Can the software convert the txt file to pdf automatically?
Yes, our Text to PDF converter is able t convert text files to PDF files automatically. Text to PDF converter can be downloaded from following web page,
https://www.verypdf.com/txt2pdf/index.htm
You can look at command line options at bottom of following web page,
https://www.verypdf.com/txt2pdf/help.htm
>>1) I want to set an instruction to scan txt files in a folder and convert it to
>>pdf file automatically once a txt file is uploaded into the designated folder.
>>Do the software support this instruction?
You can write following lines to a .bat file, run this .bat file, then you can monitor all text files in C:\test\ folder, after you copy a text file to C:\test\ folder, Text to PDF converter will convert this text file to PDF file automatically,
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
REM @ECHO OFF
:retry
for %%F in (C:\test\*.txt) do (
"C:\Program Files\Text2PDF v1.5\txt2pdf.exe" "%%F" "%~dpnF.pdf"
move "%%F" "%%F.bak"
)
ping -n 5 127.0.0.1 > nul
goto retry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>2) Also, I want to convert the txt file to pdf in same file name and
Yes, above .bat file will convert the txt file to pdf in same file name.
>>3) may it converts bulk files to pdf at the same time?
Yes, of course, you can convert lots of text files to PDF files at same time.
>>Do I need to set any command for the instruction? Or the software has
>>function to scan and convert on schedule time like every minute once time?
You can use above .bat file to do the batch conversion, that .bat file will monitor C:\test\ folder, of course, you can modify it to any folder that you want.
Related Posts
Related posts:
How can I convert a text file to PDF that contain Chinese Character and Hong Kong Font?
How to do batch conversion of multiple txt files to pdf format?
Convert TXT to PDF and specify fonts
Convert text to PDF and encrypt created PDF
How to convert text file to PDF file from C#?
Free Text to PDF Converter utility does not respect line per inch parameters and it doesn't recogniz...
Solving ASCII Character and Page Break Issues with TXT2PDF.EXE
How to Convert Multiple Text Files to PDF Using VeryPDF Cloud API Platform: Troubleshooting & So...