DirectoryTreeNode.cs

Description du code

DirectoryTreeNode.cs est un fichier du projet BrolExplorer.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/brolexplorer/.

Projet BrolExplorer :

Explorateur de media en CSharp.

Code source ou contenu du fichier

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using be.gaudry.model.file;
  6. using be.gaudry.model;
  7.  
  8. namespace be.gaudry.explorer.model
  9. {
  10. public class DirectoryTreeNode : System.Windows.Forms.TreeNode
  11. {
  12. private DirectoryInfo m_DirectoryInfo;
  13.  
  14. public DirectoryInfo DirectoryInfo
  15. {
  16. get
  17. {
  18. return m_DirectoryInfo;
  19. }
  20. }
  21.  
  22. public DirectoryTreeNode()
  23. : base("")
  24. {
  25. }
  26.  
  27. public DirectoryTreeNode(DirectoryInfo directory)
  28. : base(directory.Name)
  29. {
  30. m_DirectoryInfo = directory;
  31. this.Text = m_DirectoryInfo.Name;
  32. }
  33.  
  34. public DirectoryTreeNode(Drive.DriveInfoHelper drive)
  35. : base(drive.DriveInfo.Name)
  36. {
  37. m_DirectoryInfo = new DirectoryInfo(drive.DriveInfo.RootDirectory.FullName);
  38. this.Text = drive.Text;
  39. this.ToolTipText = drive.ToolTipText;
  40. /*
  41.  
  42. using System.Management;
  43.  
  44. ManagementObject disque =
  45.   new ManagementObject("win32_logicaldisk.deviceid=\"c:\"");
  46. disque.Get();
  47.  
  48. //Afficher toutes les propriétés du disque
  49. string strProp = "";
  50. foreach(PropertyData d in disque.Properties)
  51.   strProp += d.Name + "\n";
  52. MessageBox.Show(strProp);
  53.  
  54. //Obtenir une propriété en particulier
  55. strProp = disque.GetPropertyValue("VolumeSerialNumber").ToString();
  56. MessageBox.Show("n° série volume : " + strProp);
  57. */
  58. /*try
  59.   {
  60.   this.Text = string.Format(
  61.   "{0} ({1})",
  62.   drive.VolumeLabel,
  63.   drive.Name.Remove(1)
  64.   );
  65.   if (drive.DriveType == DriveType.Fixed)
  66.   {
  67.   this.ToolTipText = string.Format("{0} pour {1} ({2}% d'espace libre)",
  68.   drive.Name,
  69.   Units.getLengthString(drive.TotalSize),
  70.   Convert.ToInt16(((Double)drive.AvailableFreeSpace / drive.TotalSize) * 100)
  71.   );
  72.   }
  73.  
  74.   else
  75.   {
  76.   this.ToolTipText = string.Format("{0} pour {1}",
  77.   drive.Name,
  78.   Units.getLengthString(drive.TotalSize)
  79.   );
  80.   }
  81.   }
  82.   catch(IOException e)
  83.   {
  84.   this.Text = drive.Name;
  85.  
  86.   this.ToolTipText = e.Message;
  87.   }*/
  88. }
  89.  
  90. public DirectoryTreeNode(DirectoryInfo directory, int imageIndex)
  91. : this(directory)
  92. {
  93. this.ImageIndex = imageIndex;
  94. this.SelectedImageIndex = imageIndex;
  95. }
  96. }
  97. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/brolexplorer/model/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1732229635 21/11/2024 23:53:55
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/brolexplorer/model/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csDrive.cs6.66 Ko31/10/2018 18:32:21-refusé-
Afficher le fichier .cs|.csDirectoryTreeNode.cs2.79 Ko31/10/2018 18:32:21-refusé-
Afficher le fichier .cs|.csMediaBrowser.cs13.11 Ko31/10/2018 18:32:21-refusé-
Afficher le fichier .cs|.csMediaParser.cs5.71 Ko31/10/2018 18:32:21-refusé-

Utilisation de l'explorateur de code

  • Navigation :
    • Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
    • Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
    • La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
    • Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
  • Affichage :
    • Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
  • Actions :
    • Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 30/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-brolexplorer-source-rf-model//DirectoryTreeNode.cs.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.