Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# 임시 파일 이름을 표시하는 프로그램

<시간/>

C#의 GetTempPath() 메서드는 임시 파일 이름을 표시합니다. -

Path.GetTempPath();

변수의 이름을 가져오고 표시 -

string tempFile = Path.GetTempPath();

다음은 코드입니다 -

using System;
using System.IO;
class Demo {
   static void Main() {
      string tempFile = Path.GetTempPath();
      Console.WriteLine(tempFile);
   }
}

출력

/tmp/