Skip to content

Commit 069c6dc

Browse files
updated files
1 parent 3507e3c commit 069c6dc

5 files changed

+201
-0
lines changed

Source_Codes_Only/CreateCSVFile.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Text;
3+
4+
namespace CSV_TextFile_Read_Write
5+
{
6+
class CSVTextFileCreator
7+
{
8+
public static void Main()
9+
{
10+
try
11+
{
12+
// Using StreamWriter to create and write to a file
13+
using (StreamWriter fwriter = new StreamWriter("CSVFileName.csv", true)) //true opens the file in append mode
14+
{
15+
fwriter.WriteLine("Text to be written to the file "); // write the header text to file
16+
}
17+
}
18+
catch (Exception Ex)
19+
{
20+
Console.WriteLine($"An error occurred: {Ex.Message}");
21+
}
22+
}//end of main()
23+
}//end of class
24+
}//end of namespace
25+

Source_Codes_Only/ReadCSVFile.cs

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+

2+
// reads from a CSV file
3+
// www.xanthium.in
4+
5+
using System;
6+
using System.Reflection.PortableExecutable;
7+
using System.Text;
8+
9+
10+
namespace CSV_TextFile_Read_Write
11+
{
12+
class ReadCSVFilefromDisk
13+
{
14+
public static void Main()
15+
{
16+
17+
string CSVFileName = "CSVTextFile.csv"; // Name of the file to be created
18+
19+
//Read data from CSV file
20+
try
21+
{
22+
using (StreamReader CSVReader = new StreamReader(CSVFileName))
23+
{
24+
string line;
25+
while ((line = CSVReader.ReadLine()) != null)
26+
{
27+
Console.WriteLine(line);
28+
29+
string[] individualchar = line.Split(",");
30+
foreach(string c in individualchar)
31+
{
32+
Console.Write($"{c} ");
33+
}
34+
35+
Console.WriteLine();
36+
}
37+
}
38+
}
39+
40+
41+
catch (Exception Ex)
42+
{
43+
Console.WriteLine($"An error occurred: {Ex.Message}");
44+
}
45+
}
46+
47+
48+
}
49+
}
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+

2+
// code to create a text file, write some data to it and read back the data
3+
4+
5+
using System;
6+
using System.Text;
7+
8+
namespace FileOperations
9+
{
10+
class FileReadWrite
11+
{
12+
public static void Main()
13+
{
14+
string filename = "MyTextFile.txt";
15+
16+
string[] TexttoWrite = { "first line",
17+
"second line",
18+
"third line " };
19+
20+
try
21+
{
22+
// Using StreamWriter to create and write to a file
23+
using (StreamWriter fwriter = new StreamWriter(filename, true)) //true opens the file in append mode
24+
{
25+
foreach (string line in TexttoWrite)
26+
{
27+
fwriter.WriteLine(line);
28+
}
29+
}
30+
}
31+
32+
catch(Exception Ex)
33+
{
34+
Console.WriteLine($"An error occurred: {Ex.Message}");
35+
}
36+
37+
38+
// Using StreamReader to read line by line
39+
using (StreamReader freader = new StreamReader(filename))
40+
{
41+
string line;
42+
while((line = freader.ReadLine()) != null )
43+
{
44+
Console.WriteLine(line);
45+
}
46+
}
47+
48+
}
49+
}
50+
51+
}
+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+

2+
// Writes the data present in a 2D array to a CSV text file on the disk
3+
// www.xanthium.in
4+
5+
using System;
6+
using System.Text;
7+
8+
9+
namespace CSV_TextFile_Read_Write
10+
{
11+
class WriteCSVDataToFile
12+
{
13+
public static void Main()
14+
{
15+
//CSVfile creation parameters
16+
string SeperatorCharacter = ","; // Comma Seperated file
17+
string CSVFileName = "CSVTextFile.csv"; // Name of the file to be created
18+
19+
string[] CSVHeaderTextArray = { "No", "Name", "Age", "Address" }; //CSV header data
20+
21+
//CSV data to be stored
22+
string[,] CSVDataArray = {
23+
{ "1", "Alice", "30", "123 Main St, New York" },
24+
{ "2", "Bob", "25", "456 Elm St, Los Angeles" },
25+
{ "3", "Charlie", "35", "789 Oak St, Chicago" },
26+
{ "4", "David", "40", "321 Pine St, Houston" },
27+
{ "5", "Eve", "28", "654 Maple St, Seattle" }
28+
};
29+
30+
string CSVHeaderText = string.Join(SeperatorCharacter, CSVHeaderTextArray); // join the header text with seperator
31+
32+
33+
// Console.WriteLine(CSVHeaderText);
34+
// Console.WriteLine($"Number of Rows {CSVDataArray.GetLength(0)} "); // Number of rows
35+
// Console.WriteLine($"Number of Columns {CSVDataArray.GetLength(1)} "); // Number of column
36+
37+
38+
//create and write data into the CSV file
39+
try
40+
{
41+
// Using StreamWriter to create and write to a file
42+
// using (StreamWriter fwriter = new StreamWriter(CSVFileName, true)) //true opens the file in append mode,true is optional
43+
44+
using (StreamWriter fwriter = new StreamWriter(CSVFileName)) //file created fresh everytime ,previous data destroyed
45+
{
46+
fwriter.WriteLine(CSVHeaderText); // write the header text to file
47+
48+
// Write
49+
for (int i = 0; i < CSVDataArray.GetLength(0); i++)
50+
{
51+
StringBuilder sb = new StringBuilder(); // create a string builder object
52+
53+
for (int j = 0; j < CSVDataArray.GetLength(1); j++)
54+
{
55+
56+
sb.Append(CSVDataArray[i, j]); // append the character
57+
sb.Append(SeperatorCharacter); // append the comma
58+
}
59+
60+
sb.Length--; //remove the trailing comma, 1,Alice,30,123 Main St, New York,<- trailing comma
61+
fwriter.WriteLine(sb.ToString()); //Write data to file
62+
63+
//Console.WriteLine(sb.ToString());
64+
}//end of internal for loop
65+
}//end of using
66+
}//end of try
67+
68+
catch (Exception Ex)
69+
{
70+
Console.WriteLine($"An error occurred: {Ex.Message}");
71+
}
72+
}
73+
74+
75+
}
76+
}
137 KB
Binary file not shown.

0 commit comments

Comments
 (0)