Пример #1
0
 public static void ShowFileOrFolderInFileExplorer(string path)
 {
     if (File.Exists(path))
     {
         OsShellUtil.SelectPathInFileExplorer(path);
     }
     else if (Directory.Exists(path))
     {
         OsShellUtil.OpenWithFileExplorer(path);
     }
 }
Пример #2
0
 public static void ShowFileOrParentFolderInFileExplorer(string path)
 {
     if (File.Exists(path))
     {
         FileInfo fileInfo = new(path);
         OsShellUtil.SelectPathInFileExplorer(fileInfo.FullName);
     }
     else if (Directory.Exists(path))
     {
         FileInfo fileInfo = new(path);
         OsShellUtil.OpenWithFileExplorer(fileInfo.Directory.FullName);
     }
 }
Пример #3
0
        public static void ShowFileOrParentFolderInFileExplorer(string path)
        {
            var fileInfo = new FileInfo(path);

            if (fileInfo.Exists)
            {
                OsShellUtil.SelectPathInFileExplorer(fileInfo.FullName);
            }
            else if (fileInfo.Directory.Exists)
            {
                OsShellUtil.OpenWithFileExplorer(fileInfo.Directory.FullName);
            }
        }