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

SetCurrentDirectory() public abstract méthode

public abstract SetCurrentDirectory ( string fullPath ) : void
fullPath string
Résultat void
        public abstract void SetCurrentDirectory(string fullPath);
        public abstract int MaxPath { get; }

Usage Example

Exemple #1
0
 public override void SetCurrentDirectory(string fullPath)
 {
     // WinRT honors the Win32 current directory, but does not expose it,
     // so we use the Win32 implementation always.
     // This will throw UnauthorizedAccess on brokered paths.
     _win32FileSystem.SetCurrentDirectory(fullPath);
 }
All Usage Examples Of System.IO.FileSystem::SetCurrentDirectory