I prepared a program that would make a lot of work for you today.
What is the benefit of this program? and what does it do .
If you are using an irregular desktop like me or you are distributing everything, this program will help you collect your scattered pictures, music files, office files, video clips, compressed files and more in separate folders within 1 second.
The main purpose of this program is to save you time ensure that you have a clean and comfortable computer.
If you encounter an error or something goes wrong, you can comment, i am happy to assist you.
GitHub : https://github.com/ShanksTaicho/Computer-Editing
Project Codes : https://github.com/ShanksTaicho/Computer-Editing/blob/master/Codes
Readme.md : https://github.com/ShanksTaicho/Computer-Editing/blob/master/README.md
Features;
1 - Image Files = ".jpg.jpeg.png.ico.gif.bmp.ai.psd"
2 - Musics Files = ".mp3.mp4.au.mpg.mpeg"
3 - Videos Files = ".avi.flv.mov.qt"
4 - Programs Files = ".exe.bat.com"
5 - Web Files = "".html.htm.aspx.php.css.jsp.js"
6 - Compressed Files = ".rar.zip.iso.arc.cab"
7 - Office Files = ".xls.xlsx.doc.docx.md5.accdb.txt.pps.pdf.log.bak.bat.dll.ttf"
8 - Shortcuts = ".lnk"
Works in extensions you see above.
File codes
string[] folderNames = { "Folders", "Pictures", "Musics", "Videos", "Programs",
"Web Files", "Compressed Files", "Office Files", "Shortcuts" };
string[] extensions = { "", ".jpg.jpeg.png.ico.gif.bmp.ai.psd", ".mp3.mp4.au.mpg.mpeg", ".avi.flv.mov.qt", ".exe.bat.com",
".html.htm.aspx.php.css.jsp.js", ".rar.zip.iso.arc.cab",
".xls.xlsx.doc.docx.md5.accdb.txt.pps.pdf.log.bak.bat.dll.ttf", ".lnk" };
Desing ;
FolderBrowserDialog gs = new FolderBrowserDialog();
gs.ShowDialog();
if (gs.SelectedPath != "")
{
txtPath.Text = gs.SelectedPath;
}
else
{
MessageBox.Show("Select Folder.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
this.Icon = Resources.folder;
string desktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
txtPath.Text = desktop;
Works in extensions you see above
Test;
https://vimeo.com/249200486
Posted on Utopian.io - Rewarding Open Source Contributors
