📜  演示 CanSeek 属性使用的 C# 程序

📅  最后修改于: 2022-05-13 01:55:47.151000             🧑  作者: Mango

演示 CanSeek 属性使用的 C# 程序

FileStream 类用于在文件中执行读取和写入操作。它为同步和异步读写操作提供全面支持。此类提供不同类型的方法和属性, CanSeek属性就是其中之一。此属性用于查找确定当前流是否支持查找的值。如果返回值为true则表示当前流支持查找,或者如果返回值为false则表示当前流不支持查找。

句法:

返回:此属性的返回类型为布尔值,为真或假。

方法:

1.创建两个文件指针——文件1和文件2

FileStream file1;
FileStream file2;

2.使用具有读取权限的 sravan.txt 和具有写入权限的 vignan.txt 获取文件 1

file1 = new FileStream("sravan.txt", FileMode.Open, FileAccess.Read);
file2 = new FileStream("vignan.txt", FileMode.Open, FileAccess.Write);

这里,Open 属性用于打开文件,Read 属性用于读取文件,Write 属性用于写入文件。

3.使用 CanSeek 属性检查这两个文件是否能够读取

if (file1.CanRead)
    Console.WriteLine("able to read");
else
    Console.WriteLine("not able to read");
if (file2.CanRead)
    Console.WriteLine("able to read");
else
    Console.WriteLine("not able to read");

4.关闭两个文件

例子:

C#
// C# program to demonstrate the working of CanSeek property
using System;
using System.IO;
  
class GFG{
  
static void Main()
{
      
    // Declare two file pointers
    FileStream file1;
    FileStream file2;
      
    // Read given files
    file1 = new FileStream("sravan.txt", FileMode.Open,
                           FileAccess.Read);
    file2 = new FileStream("vignan.txt", FileMode.Open,
                           FileAccess.Write);
  
    // Check file pointer 1 is able to seek or not
    // Using the CanSeek property
    if (file1.CanSeek)
        Console.WriteLine("able to seek");
    else
        Console.WriteLine("not able to seek");
  
    // Close first file pointer
    file1.Close();
      
    // Check file pointer 2 is able to seek or not
    // Using the CanSeek property
    if (file2.CanSeek)
        Console.WriteLine("able to seek");
    else
        Console.WriteLine("not able to seek");
          
    // Close second file pointer
    file2.Close();
}
}


输出:

able to seek
able to seek