Jump to content

Convert RTF file to TXT


texan
 Share

Recommended Posts

Rich text editor, editor_4efa0ebd77e87, press ALT 0 for help.

I need to convert an existing rtf file to a txt file. I am currently using _WordDocSaveAs to do this and it works but I need to do this in the background and there does not appear to be an option to prevent Microsoft Word from opening up. Is there an option to make Word open in the background or is there generally a better method to go about this?

Current code:

#include <Word.au3>
$oWordApp = _WordCreate ("")
$FilePath = "S:\Tasks.rtf"
$NewFilePath = "S:\TasksNew.txt"
$oDoc = _WordDocOpen ($oWordApp, $FilePath)
_WordDocSaveAs($oDoc, $NewFilePath, 4)
_WordDocClose ($oDoc)
_WordQuit ($oWordApp)
Link to comment
Share on other sites

  • Moderators

Hi, Texan. You should be able to do something like this if you don't want the file to open.

FileCopy("C:Test.rtf", "C:Test.txt", 1)

Use FileMove if you want to delete the original.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

Or try third parameter of _WordCreate.

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

  • Moderators

JLogan3o13,

I think the OP wants to remove all the RTF formatting from the text rather then just rename the file. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

JLogan3o13,

I think the OP wants to remove all the RTF formatting from the text rather then just rename the file. ;)

M23

Well, picky picky :) My apologies on the bad advice, Texan. Xeno is correct, you should be able to set the visibility right within the _WordCreate func.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

I think, the _GUICtrlRichEdit_.. functions should help :)

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...