C# Tutorial - How to make a File Explorer | FoxLearn

preview_player
Показать описание
How to make a file explorer in C# Windows Forms Application.

Advanced File Explorer using C# and Windows Forms
How to create an Explorer-like folder browser control?
Opening a folder in explorer and selecting a file C#
Create a File Explorer in winforms app C#
How to add browse file button to Windows Form using C#
Walkthrough: Creating an Explorer Style Interface with the ListView C#
Рекомендации по теме
Комментарии
Автор

I can say that Fox learn is always a lifesaver when it comes to needing stuff you cant find any were else;D or atleast really good tutorials on a subject.

tylerscoding
Автор

You made my dream come true... thanks so much... congrats on your 53K! You deserve 1M. I am not lying like others, your the best.

r
Автор

thanks a lot i wanted this from many months

kishorpatange
Автор

Here is the code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace FileExplorer
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void btnOpen_Click(object sender, EventArgs e)
{
//Open browser dialog allows you to select the path
using(FolderBrowserDialog fbd = new FolderBrowserDialog() { Description="Select your path." })
{
if (fbd.ShowDialog() == DialogResult.OK)
{
webBrowser.Url = new Uri(fbd.SelectedPath);
txtPath.Text = fbd.SelectedPath;
}
}
}

private void btnBack_Click(object sender, EventArgs e)
{
if (webBrowser.CanGoBack)
webBrowser.GoBack();
}

private void btnForward_Click(object sender, EventArgs e)
{
if (webBrowser.CanGoForward)
webBrowser.GoForward();
}
}
}

You're welcome :D

anfstudios
Автор

Thank you very much for the video
Is it possible to make the open button open a specific folder every time you click on it?

nourarochdi
Автор

Help please, how i can create a button, that can delete a selected item in webBrowser???

YevheniiDomnich
Автор

there's tons of problem while using this method.
since there's no any code can help further access the file in this webbrowser.

mingz
Автор

How can i make a file explorer that only views a single path?Anyway, Great vid!Just subbed!

Lazar-wu
Автор

Is it possible to add a search box to search among the files in this web browser?

PrinceVerma-dusx
Автор

ok how to add buttons that delete ? also how to make that everytime i press back path changes?

jolantamorkuniene
Автор

Hello, before i am say thank you so much it tutorial, but would you please create tutorial " textbox search data file video in local computer with c#" 🙏?

VickyRomyata
Автор

How do I start the program with the medium icons?

playerpbc
Автор

Thanks for this video. I lerned alot. How to make View changer? Details or big simbols

heimelektroniker
Автор

Thank you so much! Just one question! How woud i make this load images?

jurijtic
Автор

i could not find that web browser option in the tool box

Animefield
Автор

Hello, how can I open files as pdf and images from this Video File Explorer?
Help me please?

igorduarte
Автор

Thank you for tutorial, Can you make File Explorer with "frequent folders" and "recent files"

tengertsatsral
Автор

How do you change the file's icons? I would like to make a certain file extension have a specific icon.

EthanEDITS
Автор

Can you tell me how to disable double click event and get select file name? thank you very much!

xuefengmu
Автор

Hu thanks a lot for the video, when i open any folder it opens on my windows explorer and not on my actual program, how to fix that ?

pouyadrogon
visit shbcf.ru