System.IO.FileSystem.GetCurrentDirectory C# (CSharp) 메소드

GetCurrentDirectory() 공개 추상적인 메소드

public abstract GetCurrentDirectory ( ) : string
리턴 string
        public abstract string GetCurrentDirectory();
        public abstract void SetCurrentDirectory(string fullPath);

Usage Example

예제 #1
0
 public override string GetCurrentDirectory()
 {
     // WinRT honors the Win32 current directory, but does not expose it,
     // so we use the Win32 implementation always.
     return(_win32FileSystem.GetCurrentDirectory());
 }
All Usage Examples Of System.IO.FileSystem::GetCurrentDirectory