File Handling in QTP
10 Jul 2008 - 05:48:10 pm
What is FSO?
       FSO stands for File System Object. This is used to support text file creation and manipulation through the TextStream object and is contained in the Scripting type library (Scrrun.dll)The FSO Object Model has a rich set of properties, methods and events to process folders and files.
How to create a file?
      We first create a FSO object using CreateObject and then create a text file using CreateTextFile.For Example: Suppose you want to create a file called "test.txt" located in C:
Dim fso, file, file_location
file_location = "C:file_location"
Set fso = CreateObject(“Scripting.FileSystemObject”)
Set file = fso.CreateTextFile(file_location, True) // True--> file is to be overwritten if it already exists else false  We would use the same example for the rest of this post.
 
 How to open a file?
     Set file= fso.OpenTextFile("C:file_location", ForWriting, True)
 
//2nd argument can be ForReading, ForWriting, ForAppending
//3rd argument is "True"
if new file has to be created if the specified file doesn’t exist else false, blank signify false.

How to read content from a file?
   Use ReadLine() method
For example:
Set file= fso.OpenTextFile("C:file_location", ForReading, True)
//2nd argument should always be "ForReading" in order to read contents from a file
Do while file.AtEndofStream <> True     
data = file.ReadLine()
    
  msgbox data
Loop

How to write content to a file?
     You can use  Write() or WriteLine() Methods to write text into a file. The difference between the Write() and WriteLine() Method is that the latter automatically inserts a new line character while the former doesn’t insert a new line character.
  For example:
  Set file= fso.OpenTextFile("C:file_location", ForWriting, True) //
 2nd argument should always be "ForWriting" in order to write contents to a file
file.Write("This is a place to get all your qtp") file.Write("questions and answers solved.")//Output will be: This is a place to get all your qtp questions and answers solved. whilefile.WriteLine("This is a place to get all your qtp") file.Write("questions and answers solved.")//Output will be: This is a place to get all your qtpquestions and answers solved.

How to delete content?
     Use DeleteFile() method to delete a file from a particular locationFoe Example:
   file_location = "C:file_location"
Set fso = CreateObject(“Scripting.FileSystemObject”)
fso.DeleteFile(file_location
Admin · 1000 views · 12 comments
Categories: File System Objects

Permanent link to full entry

http://automation-qtp.discussionsblog.com/QTP-b1/File-Handling-in-QTP-b1-p8.htm

Comments

Comment from: GHD [ Visitor ] Website
The top hair straighteners are collected here, you will find ghd and CHI Flat iron at our web.
   2010-03-13 @ 08:25:46 am
Comment from: MBT OUTLET [ Visitor ] Website
mbt shoes sale , discount MBT Tataga , cheap MBT Tembea , $85 only.
   2010-03-10 @ 07:26:17 am
Comment from: True Religion Jeans [ Visitor ] Website
You want Seven jeans for the 2010 latest designer for yourown?Shopping online today for the Seven for mankind, promotion now.Unbelievable low price.And the True Religion Jeans is the another hotsale jeans here.Go for it now.
   2010-02-26 @ 02:46:43 pm
Comment from: GHD [ Visitor ] Website
   2010-02-26 @ 12:20:18 pm
Comment from: Seven jeans [ Visitor ] Website
2010 latest style Seven Jeans.A variety of styles of True Religion Jeans offered here.High praised from the cusotmers.Official online store for Seven for mankind,free shipping and fast delivery
   2010-02-10 @ 06:31:00 am
Comment from: Jean [ Visitor ] Website
You want Seven jeans for the 2010 latest designer for yourown?Shopping online today for the Seven for mankind, promotion now.Unbelievable low price.And the True Religion Jeans is the another hotsale jeans here.Go for it now.
   2010-02-02 @ 07:43:48 am
Comment from: Air King [ Visitor ] Website
   2010-01-28 @ 08:05:10 am
Comment from: Mbt shoes [ Visitor ] Website
Mbt shoes are selected, buy Mbt women's sport 2and Mbt Chapa Navy , you will save 84%.
   2010-01-15 @ 07:27:48 am

1, 2  Next page


Leave a comment

New feedback status: Published





Your URL will be displayed.

 
Please enter the code written in the picture.


Comment text

Options
   (Set cookies for name, email and url)


  

Last Comment

That’s cheap to see the

2010-03-13 @ 06:52:43 pm
by Bobbi29Ramsey


A student, who gets know a ...

2010-03-13 @ 01:51:36 pm
by FernandezMitzi


mbt sale ,mbt walking ...

2010-03-13 @ 12:46:50 pm
by mbt


mbt sale promotion, mbt ...

2010-03-13 @ 12:43:48 pm
by mbt


mbt shoes uk direct,mbt ...

2010-03-13 @ 12:41:59 pm
by mbt


mbt sale, mbt lami ...

2010-03-13 @ 12:39:39 pm
by mbt


mbt shoes sale promotion, ...

2010-03-13 @ 12:36:30 pm
by mbt


ghd hair straightenersand CHI ...

2010-03-13 @ 08:32:36 am
by GHD


ghd hair straighteners and

2010-03-13 @ 08:31:02 am
by GHD


ghd and CHI Flat ...

2010-03-13 @ 08:30:16 am
by GHD


ghd hair straighteners and

2010-03-13 @ 08:29:45 am
by GHD


ghd hair straighteners and

2010-03-13 @ 08:29:12 am
by GHD


CHI Flat iron and

2010-03-13 @ 08:28:25 am
by GHD


ghd hair straighteners and

2010-03-13 @ 08:27:27 am
by GHD


ghd is a world famous ...

2010-03-13 @ 08:26:33 am
by GHD


Who's Online?

Member: 0
Visitors: 3

Announce

Tags

No tags in this Blog

rss Syndication

Archives