📌  相关文章
📜  检查驱动器是否存在 c# - TypeScript (1)

📅  最后修改于: 2023-12-03 14:55:51.657000             🧑  作者: Mango

检查驱动器是否存在

在开发过程中,有时候需要检查一个特定的驱动器是否存在于系统中。在C#和TypeScript中,可以使用以下代码来检查驱动器是否存在。

C#代码

使用C#语言编写一个控制台应用程序,检查特定的驱动器是否存在。

using System;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        // Check if the C: drive exists
        bool exists = Directory.Exists(@"C:\");

        if (exists)
        {
            Console.WriteLine("The C: drive exists.");
        }
        else
        {
            Console.WriteLine("The C: drive does not exist.");
        }

        Console.ReadLine();
    }
}
TypeScript代码

在TypeScript中,也可以检查特定的驱动器是否存在。以下是一个例子:

import * as fs from 'fs';

const exists = fs.existsSync("C:\\");
if (exists) {
    console.log('The C: drive exists.');
} else {
    console.log('The C: drive does not exist.');
}

需要注意的是,在TypeScript代码中使用fs模块需要先进行安装,并且需要将文件保存为.ts文件。同时,需要使用双反斜杠\\来表示路径中的反斜杠。