.NET Framework
फ़ाइल इनपुट / आउटपुट
खोज…
पैरामीटर
पैरामीटर | विवरण |
---|---|
पथ का पथ | जाँच करने के लिए फ़ाइल का पथ। (रिश्तेदार या पूरी तरह से योग्य) |
टिप्पणियों
यदि फ़ाइल मौजूद है तो सही है, अन्यथा गलत है।
VB WriteAllText
Imports System.IO
Dim filename As String = "c:\path\to\file.txt"
File.WriteAllText(filename, "Text to write" & vbCrLf)
VB StreamWriter
Dim filename As String = "c:\path\to\file.txt"
If System.IO.File.Exists(filename) Then
Dim writer As New System.IO.StreamWriter(filename)
writer.Write("Text to write" & vbCrLf) 'Add a newline
writer.close()
End If
C # स्ट्रीमवॉटर
using System.Text;
using System.IO;
string filename = "c:\path\to\file.txt";
//'using' structure allows for proper disposal of stream.
using (StreamWriter writer = new StreamWriter(filename"))
{
writer.WriteLine("Text to Write\n");
}
C # WriteAllText ()
using System.IO;
using System.Text;
string filename = "c:\path\to\file.txt";
File.writeAllText(filename, "Text to write\n");
C # File.Exists ()
using System;
using System.IO;
public class Program
{
public static void Main()
{
string filePath = "somePath";
if(File.Exists(filePath))
{
Console.WriteLine("Exists");
}
else
{
Console.WriteLine("Does not exist");
}
}
}
एक टर्नरी ऑपरेटर में भी इस्तेमाल किया जा सकता है।
Console.WriteLine(File.Exists(pathToFile) ? "Exists" : "Does not exist");
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow