Link to home
Start Free TrialLog in
Avatar of RUSTY
RUSTY

asked on

How to read .IN file as text

I have some files with the suffix .IN    If I can, I need to turn them into text files.  How?
Avatar of tuvi
tuvi
Flag of United States of America image

What are the files? What format? Is it .IN or is it .INI???
Avatar of WDB
WDB

Right click the file and then drag it into an open notepad session. It will be placed there as text.
If the file is originaly a text file, or contain text ( not any file of a program that you changed the extention... ) you can open any text editor, or a word proccesor program
( Notpad, Word etc' ) then open the file you need to deal with,
now all you need to do is to save the file using "Save As" File name,
and choose the text extention ( i.e. filename.TXT )
Avatar of RUSTY

ASKER

The suffix is .IN     I guess the problem I'm having now is that it says the file is in use.    There is no way for me to be sure NOone is using it at any certain time.    It won't let me copy it, open it, or rename it.    If I can get around this, then I can try to open it in notepad or such.    Let me know, thanks.
Avatar of RUSTY

ASKER

I upped points to 90.  Please let me know how to access the file while in use, if possible, so I can try your answer, WDB.  Thanks.
Restart Computer in DOS mode and then copy the file to a different directory. Restart Windows and then try the newly copied file with notepad.
Avatar of RUSTY

ASKER

Unfortunately, the .IN files live on our server.  Can I access the server in DOS somehow?
ASKER CERTIFIED SOLUTION
Avatar of johncook
johncook

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
A follow up to my proposed answer...
To convert it to a pure text file edit out all of the non-alphanumeric characters from the file.
I f you are versed at the 'C' langage you could easily write a program to strip the non-alpha char's from the file and then re-store the file to disk.
one you have removed the non-printable char's you will then have to pull the resultant file into a text editor and format it.

John C. Cook