System.IO.FileSystem.GetCurrentDirectory C# (CSharp) Méthode

GetCurrentDirectory() public abstract méthode

public abstract GetCurrentDirectory ( ) : string
Résultat string
        public abstract string GetCurrentDirectory();
        public abstract void SetCurrentDirectory(string fullPath);

Usage Example

Exemple #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