Questions tagged [folderbrowserdialog]

FolderBrowserDialog is a class in the System.Windows.Forms.CommonDialog namespace

Prompts the user to select a folder.

Docs

280 questions
0
votes
2 answers

Visual Basic , code Cleaner

I am making a directory cleaner that uses the following code Label2.Text = "Cleaned." If CheckBox1.Checked = True Then On Error Resume Next Kill("C:\Nexon\Combat Arms\*.txt") End If If CheckBox2.Checked = True Then …
0
votes
1 answer

Looking for a WinForms .Net Folder/File browser UI control for accessing WebDAV and SharePoint folders

I have a need to be able to browse and access WebDAV and SharePoint folders in a WinForms app. I am aware of the following .Net libraries for accessing WebDAV folders. From what I can tell these do not appear to include any ready to use WinForms UI…
Elan
  • 6,084
  • 12
  • 64
  • 84
0
votes
0 answers

Folder upload functionality in react/next app

I'm learning NextJs. I want to upload folder from client side. is there any way to do it in React/Next JS? I did try to do it with html input component. as well as dropzone & jsZip library.…
0
votes
0 answers

SHBrowseForFolder: Move the selected entry into the visible area

Hello! It's about SHBrowseForFolder again. Thanks to I've made a lot of progress on Charlieface, but there's still something missing for the final touch. In the BFFCALLBACK BrowseCallbackProc I select the select item. Can I still send a…
perlfred
  • 1
  • 3
0
votes
2 answers

Using Folder Browser in WPF .NET 6.0

I have been trying to use a folder browser dialog from System.Windows.Forms in .NET 6.0 WPF app, and every time I add the reference, it breaks my build and causes all kinds of wierd errors. Has anyone figured this out? I added a reference to…
John
  • 3
  • 5
0
votes
1 answer

file browser and root opening at end of script

i have a programme that takes user input for folder save location and a file selection to take data from i have used tkinter's filedialog.askdirectory() and askopenfilename() to do these tasks as shown below: import pandas as pd from tkinter import…
0
votes
0 answers

In the FolderBrowserDialog (C# form app) I want to define a custom root folder, so that the folder selecting structure is starting with this folder

In the FolderBrowserDialog control (C# form app) I want to define a custom root folder, so that the folder selecting structure is starting with this custom folder. For example C:\data\archive folder should be the root folder and I should see at the…
Mdarende
  • 469
  • 3
  • 13
0
votes
2 answers

c# - folderBrowserDialog1 and Network Drive

Is there anyway to set the folderBrowserDialog to start in a set folder on a network drive? I know it takes Environment.SpecialFolders but I'm not seeing what I need in there...
Mytheral
  • 3,929
  • 7
  • 34
  • 57
0
votes
1 answer

c# how to avoid repetition in foreach block

In my program, what user types on Data Grid View are set to file names and saved. I use Folder Browser Dialog for the saving function. The problem is the whole process is repeated through foreach loop and the folder browser dialog pops up for every…
LFLJM
  • 65
  • 10
0
votes
1 answer

When i save a folder in a location, its getting stored in a folder above

I import a file, process it and save it in some location. I am saving my file in a folder but it is getting saved in a folder above the folder selected. Here is the code, private void btnSave_Click(object sender, EventArgs e) { …
chh
0
votes
1 answer

alternative to FolderBrowserDialog in web forms

I want to Browse folder and show selected folder path in Textbox. I have used FolderBrowserDialog ,but it is not working in Asp.Net Web Application. Also FolderBrowseDialog window appear in back. I there any alternative to FolderBrowserDialog in web…
0
votes
0 answers

Why are some folders missing when I switch from "folders view" to "solution view" in Visual Studio 2019?

I have cloned a repo in Visual Studio 2019 and whenever I try to open the repo using the "open local folder" option, the folder view loads, here I can see all the projects in the repo but as soon as I switch to the "solution view", a few of my…
Artemis
  • 1
  • 5
0
votes
0 answers

FolderBrowserDialog is not supporting the scrollbar for the selected folder

#when I give the selected path it is just highlighting the path but not scrolling down to the selected folder private void SetPathClick(object sender, RoutedEventArgs e) { var directoryDialog = new…
Prakruthi
  • 1
  • 3
0
votes
1 answer

Folder Dialog return to dialog if criteria not met

I'm using the Ookii Vista folder dialog for ease of use, and I have this code going on which is called from a button: using System; using System.IO; using System.Linq; using System.Windows.Forms; using Ookii.Dialogs; private string…
Jaymar
  • 27
  • 7
0
votes
1 answer

Iterate over files in a folder to populate a dataframe (python)

I am working with compiling weather data from different datafiles in a folder. Stations.csv - These datafiles are defined as location points in this csv. temperature.csv - The weather data needs to be compiled in this dataframe. Issue with the…
Gaurang
  • 18
  • 3