Presentation is loading. Please wait.

Presentation is loading. Please wait.

Microsoft® Small Basic

Similar presentations


Presentation on theme: "Microsoft® Small Basic"— Presentation transcript:

1 Microsoft® Small Basic
File Input and Output Estimated time to complete this lesson: 1 hour

2 File Input and Output In this lesson, you will learn about:
Using different properties of the File object. Using different operations of the File object.

3 The File object includes various operations and properties, such as:
A computer file is a collection of data stored by your computer. Small Basic programming allows you to work with external files from your program. With the help of the File object in Small Basic, you can access information from a file stored on your computer. You can also read and write information from and to the file. The File object includes various operations and properties, such as: Using the File object, you can also save and open settings across various sessions of your program. CreateDirectory GetDirectories WriteLine AppendContents ReadContents CopyFile GetFiles LastError DeleteDirectory

4 Operations of the File Object
As you see, the File object provides many ways of working with files. Let’s learn about some operations of the File object… WriteLine You can use the WriteLine operation to write a line of text at the specified line number in a file. AppendContents With the AppendContents operation, you can add the specified text at the end of a file. ReadContents Use the ReadContents operation to read the entire contents of a specified file. If the WriteLine operation is successful, it displays “SUCCESS” in the output window; otherwise, it displays “FAILED”. It will overwrite the previously written content on the specified line. Likewise, if the AppendContents operation is successful, it displays “SUCCESS” in the output window; it displays “FAILED” if unsuccessful. The ReadContents operation is faster when the size of the file is less than 1 MB. The operation slows down as the size of the file increases—especially for files larger than 10 MB. It displays the entire contents of the specified file on the output window. Code: Writeline: File.WriteLine("C:\Small Basic.txt", 1, "Hello") AppendContents: File.AppendContents("C:\Small Basic.txt","Take Care") ReadContents: File.ReadContents("C:\Small Basic.txt”)

5 Operations of the File Object
Let’s write a program to gain better understanding of these operations. In this example, you specify a file path and use the WriteLine operation to write a sentence to the file. Next, you use the AppendContents operation to add a sentence to the existing content. Finally, you use the ReadContents operation to read the entire contents of the file. output Code: FilePath = "C:\temp\TempSubdirectory\my.txt" TextWindow.WriteLine("Write Content = " + File.WriteLine(FilePath, 1, "Shakespeare was a great writer.")) TextWindow.WriteLine("Append Content = " + File.AppendContents(FilePath, "He wrote many plays.")) TextWindow.WriteLine("Read Content = " + File.WriteLine(FilePath))

6 Operations of the File Object
CopyFile You can use the CopyFile operation to copy the specified file to a destination. GetFiles With the GetFiles operation, you can get a list of all the files present in the specified directory. If the specified destination to copy the file does not exist, the operation will try to create it. If a file of the same name already exists, the operation overwrites the existing file. Make sure to check that a file of the same name does not already exist in the specified destination. If the CopyFile operation is successful, it displays “SUCCESS”; otherwise, it displays “FAILED”. If the GetFiles operation is successful, it returns the files as an array. If unsuccessful, the operation displays “FAILED” on the output window. Code: CopyFile: File.CopyFile("C:\Small Basic.txt", "C:\temp") GetFiles: File.GetFiles("C:\Documents and Settings")

7 Operations of the File Object
Let’s write a program to better understand these operations. In this example, you use the CopyFile operation to copy the specified source file to the specified destination. You also specify the directory path, and then use the GetFiles operation to display the path of all files in the output window. output Code: sourcefilepath = "C:\temp\TempSubdirectory\my.txt" destinationfilepath ="C:\temp\TempSubdirectory\Move" directorypath = "C:\temp\" TextWindow.WriteLine("Copy file Operation:" + File.CopyFile(sourcefilepath, destinationfilepath)) TextWindow.WriteLine("Files in the directory: " + File.GetFiles(directorypath))

8 Operations of the File Object
CreateDirectory Use the CreateDirectory operation to create the specified directory at the desired location. GetDirectories With the GetDirectories operation, you can get the path of all the directories in the specified directory path. If the CreateDirectory operation is successful, it displays “SUCCESS” in the output window; otherwise, it displays “FAILED”. If the GetDirectories operation is successful, it displays the list of directories as an array in the output window. If unsuccessful, the operation displays “FAILED”. Code: CreateDirectory: File.CreateDirectory("C:\File Object") GetDirectories: File.GetDirectories("C:\Documents and Settings")

9 Operations of the File Object
Let’s see how we can apply these operations… As you see, you first use the CreateDirectory operation to create a directory. Next, you use the GetDirectories operation to get the path of the all the directories present in the specified location. output Code: directorypath1 = "C:\temp\Small Basic" TextWindow.WriteLine("Create Directory: " + File.CreateDirectory(directorypath1)) directorypath2 = "C:\temp" TextWindow.WriteLine("Directories: " + File.GetDirectories(directorypath2))

10 The LastError Property
With the help of the LastError property, you can get details of the last file-operation-based error in your program. This property is quite useful when you can’t execute a file operation in your program because of some error. In this example, you use the WriteLine operation of the File object to write text to the file at a specific line number. Next you use the LastError property of the File object to get the details of the actual error in the program, if any. output Code: FilePath = "C:\temp\TempSubdirect\my.txt" TextWindow.WriteLine("Write Line Operation: " + File.WriteLine(FilePath, 1, "How are you?")) If File.LastError = "" Then TextWindow.WriteLine("Operation Successful") Else TextWindow.WriteLine(File.LastError) EndIf

11 Let’s Summarize… Congratulations! Now you know how to:
Use different properties of the File object. Use different operations of the File object.

12 It’s Time to Apply Your Learning…
Write a program by performing the following steps: Create a directory by accepting a suitable name from the user. Download a file from the network and copy it to the created directory. Display the contents of the downloaded file in the text window. Accept additional content from the user and add that content to the file. Display the final content from the file in the text window. Please Note: The file must exist at the specified network path for the solution to work. Solution: TextWindow.Write("Enter the name of the new directory: ") DirectoryName = TextWindow.Read() File.CreateDirectory(DirectoryName) filepath = "\\mum-9785sm\Share\FileIO.txt" downloadpath = Network.DownloadFile(filepath) If File.CopyFile(downloadpath, DirectoryName) = "SUCCESS" Then TextWindow.WriteLine("File has been downloaded from the network and copied to: " + DirectoryName)   files = File.GetFiles(DirectoryName) TextWindow.WriteLine("This is the content in the file: ") TextWindow.WriteLine(File.ReadContents(files[1])) TextWindow.Write("Enter data to be added in the file:") AppendedData = TextWindow.Read() File.AppendContents(files[1]," " + AppendedData) TextWindow.WriteLine("File content after adding data is as follows: ") EndIf


Download ppt "Microsoft® Small Basic"

Similar presentations


Ads by Google