System.IO.MultiplexingWin32WinRTFileSystem.Select C# (CSharp) Méthode

Select() private méthode

private Select ( string sourceFullPath, string destFullPath, string destFullBackupPath ) : FileSystem
sourceFullPath string
destFullPath string
destFullBackupPath string
Résultat FileSystem
        private FileSystem Select(string sourceFullPath, string destFullPath, string destFullBackupPath)
        {
            return 
                (ShouldUseWinRT(sourceFullPath, isCreate: false) || ShouldUseWinRT(destFullPath, isCreate: true) || ShouldUseWinRT(destFullBackupPath, isCreate: true)) ?
                _winRTFileSystem :
                _win32FileSystem;
        }

Same methods

MultiplexingWin32WinRTFileSystem::Select ( string fullPath, bool isCreate = false ) : FileSystem
MultiplexingWin32WinRTFileSystem::Select ( string sourceFullPath, string destFullPath ) : FileSystem