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
…
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…
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.…
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…
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…
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…
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…
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...
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…
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)
{
…
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…
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…
#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…
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…
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…