[c#] 폴더 브라우저 대화 상자 시작 위치 설정

폴더 브라우저 대화 상자의 초기 디렉토리를 비 특수 폴더로 설정하는 방법이 있습니까? 이것은 내가 현재 사용하고있는 것입니다

fdbLocation.RootFolder = Environment.SpecialFolder.Desktop;

하지만 다음과 같은 문자열에 저장 한 경로를 사용하고 싶습니다.

fdbLocation.RootFolder = myFolder;

이로 인해 ” ‘string’을 ‘System.Environment.SpecialFolder’로 변환 할 수 없습니다.”라는 오류가 발생합니다.



답변

ShowDialog를 호출하기 전에 SelectedPath 속성을 설정하기 만하면됩니다.

fdbLocation.SelectedPath = myFolder;


답변

ShowDialog를 호출하기 전에 SelectedPath 속성을 설정합니다.

folderBrowserDialog1.SelectedPath = @"c:\temp\";
folderBrowserDialog1.ShowDialog();

C : \ Temp에서 시작합니다.


답변

fldrDialog.SelectedPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)

“대화 상자를 표시하기 전에 SelectedPath 속성을 설정 한 경우 SelectedPath가 RootFolder의 하위 폴더 인 절대 경로로 설정되어 있으면이 경로가있는 폴더가 선택된 폴더가됩니다. RootFolder로 표시되는 쉘 네임 스페이스). “

MSDN-SelectedPath

“GetFolderPath 메서드는이 열거와 관련된 위치를 반환합니다. 이러한 폴더의 위치는 운영 체제마다 다른 값을 가질 수 있으며 사용자는 일부 위치를 변경할 수 있으며 위치는 지역화됩니다.”

Re : Desktop 대 DesktopDirectory

데스크탑

“물리적 파일 시스템 위치가 아닌 논리적 데스크탑.”

DesktopDirectory :

“데스크톱에 파일 개체를 물리적으로 저장하는 데 사용되는 디렉터리입니다.이 디렉터리를 가상 폴더 인 데스크톱 폴더 자체와 혼동하지 마십시오.”

MSDN-특수 폴더 열거 형

MSDN-GetFolderPath


답변

디렉토리 선택 경로를 설정하고 새 디렉토리를 검색하려면 :

dlgBrowseForLogDirectory.SelectedPath = m_LogDirectory;
if (dlgBrowseForLogDirectory.ShowDialog() == DialogResult.OK)
{
     txtLogDirectory.Text = dlgBrowseForLogDirectory.SelectedPath;
}


답변

dotnet-snippets.de 에서 발견

리플렉션을 사용하면 실제 RootFolder가 작동하고 설정됩니다 !

using System;
using System.Reflection;
using System.Windows.Forms;

namespace YourNamespace
{
    public class RootFolderBrowserDialog
    {

        #region Public Properties

        /// <summary>
        ///   The description of the dialog.
        /// </summary>
        public string Description { get; set; } = "Chose folder...";

        /// <summary>
        ///   The ROOT path!
        /// </summary>
        public string RootPath { get; set; } = "";

        /// <summary>
        ///   The SelectedPath. Here is no initialization possible.
        /// </summary>
        public string SelectedPath { get; private set; } = "";

        #endregion Public Properties

        #region Public Methods

        /// <summary>
        ///   Shows the dialog...
        /// </summary>
        /// <returns>OK, if the user selected a folder or Cancel, if no folder is selected.</returns>
        public DialogResult ShowDialog()
        {
            var shellType = Type.GetTypeFromProgID("Shell.Application");
            var shell = Activator.CreateInstance(shellType);
            var folder = shellType.InvokeMember(
                             "BrowseForFolder", BindingFlags.InvokeMethod, null,
                             shell, new object[] { 0, Description, 0, RootPath, });
            if (folder is null)
            {
                return DialogResult.Cancel;
            }
            else
            {
                var folderSelf = folder.GetType().InvokeMember(
                                     "Self", BindingFlags.GetProperty, null,
                                     folder, null);
                SelectedPath = folderSelf.GetType().InvokeMember(
                                   "Path", BindingFlags.GetProperty, null,
                                   folderSelf, null) as string;
                // maybe ensure that SelectedPath is set
                return DialogResult.OK;
            }
        }

        #endregion Public Methods

    }
}


답변

제 경우에는 우연한 이중 탈출이었습니다.

이것은 작동합니다 :

SelectedPath = @"C:\Program Files\My Company\My product";

이것은하지 않습니다 :

SelectedPath = @"C:\\Program Files\\My Company\\My product";


답변